github.com/awslabs/clencli@v0.0.0-20210514234156-7ecf17182a20/.gitignore (about)

     1  
     2  # Created by https://www.gitignore.io/api/go,java,linux,macos,python,windows,virtualenv,visualstudiocode
     3  # Edit at https://www.gitignore.io/?templates=go,java,linux,macos,python,windows,virtualenv,visualstudiocode
     4  
     5  ### Go ###
     6  # Binaries for programs and plugins
     7  *.exe
     8  *.exe~
     9  *.dll
    10  *.so
    11  *.dylib
    12  
    13  # Test binary, built with `go test -c`
    14  *.test
    15  
    16  # Output of the go coverage tool, specifically when used with LiteIDE
    17  *.out
    18  
    19  # Dependency directories (remove the comment below to include it)
    20  # vendor/
    21  
    22  ### Go Patch ###
    23  /vendor/
    24  /Godeps/
    25  
    26  ### Java ###
    27  # Compiled class file
    28  *.class
    29  
    30  # Log file
    31  *.log
    32  
    33  # BlueJ files
    34  *.ctxt
    35  
    36  # Mobile Tools for Java (J2ME)
    37  .mtj.tmp/
    38  
    39  # Package Files #
    40  *.jar
    41  *.war
    42  *.nar
    43  *.ear
    44  *.zip
    45  *.tar.gz
    46  *.rar
    47  
    48  # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
    49  hs_err_pid*
    50  
    51  ### Linux ###
    52  *~
    53  
    54  # temporary files which can be created if a process still has a handle open of a deleted file
    55  .fuse_hidden*
    56  
    57  # KDE directory preferences
    58  .directory
    59  
    60  # Linux trash folder which might appear on any partition or disk
    61  .Trash-*
    62  
    63  # .nfs files are created when an open file is removed but is still being accessed
    64  .nfs*
    65  
    66  ### macOS ###
    67  # General
    68  .DS_Store
    69  .AppleDouble
    70  .LSOverride
    71  
    72  # Icon must end with two \r
    73  Icon
    74  
    75  # Thumbnails
    76  ._*
    77  
    78  # Files that might appear in the root of a volume
    79  .DocumentRevisions-V100
    80  .fseventsd
    81  .Spotlight-V100
    82  .TemporaryItems
    83  .Trashes
    84  .VolumeIcon.icns
    85  .com.apple.timemachine.donotpresent
    86  
    87  # Directories potentially created on remote AFP share
    88  .AppleDB
    89  .AppleDesktop
    90  Network Trash Folder
    91  Temporary Items
    92  .apdisk
    93  
    94  ### Python ###
    95  # Byte-compiled / optimized / DLL files
    96  __pycache__/
    97  *.py[cod]
    98  *$py.class
    99  
   100  # C extensions
   101  
   102  # Distribution / packaging
   103  .Python
   104  build/
   105  develop-eggs/
   106  dist/
   107  downloads/
   108  eggs/
   109  .eggs/
   110  lib64/
   111  parts/
   112  sdist/
   113  var/
   114  wheels/
   115  pip-wheel-metadata/
   116  share/python-wheels/
   117  *.egg-info/
   118  .installed.cfg
   119  *.egg
   120  MANIFEST
   121  
   122  # PyInstaller
   123  #  Usually these files are written by a python script from a template
   124  #  before PyInstaller builds the exe, so as to inject date/other infos into it.
   125  *.manifest
   126  *.spec
   127  
   128  # Installer logs
   129  pip-log.txt
   130  pip-delete-this-directory.txt
   131  
   132  # Unit test / coverage reports
   133  htmlcov/
   134  .tox/
   135  .nox/
   136  .coverage
   137  .coverage.*
   138  .cache
   139  nosetests.xml
   140  coverage.xml
   141  *.cover
   142  .hypothesis/
   143  .pytest_cache/
   144  
   145  # Translations
   146  *.mo
   147  *.pot
   148  
   149  # Scrapy stuff:
   150  .scrapy
   151  
   152  # Sphinx documentation
   153  docs/_build/
   154  
   155  # PyBuilder
   156  target/
   157  
   158  # pyenv
   159  .python-version
   160  
   161  # pipenv
   162  #   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
   163  #   However, in case of collaboration, if having platform-specific dependencies or dependencies
   164  #   having no cross-platform support, pipenv may install dependencies that don't work, or not
   165  #   install all needed dependencies.
   166  #Pipfile.lock
   167  
   168  # celery beat schedule file
   169  celerybeat-schedule
   170  
   171  # SageMath parsed files
   172  *.sage.py
   173  
   174  # Spyder project settings
   175  .spyderproject
   176  .spyproject
   177  
   178  # Rope project settings
   179  .ropeproject
   180  
   181  # Mr Developer
   182  .mr.developer.cfg
   183  .project
   184  .pydevproject
   185  
   186  # mkdocs documentation
   187  /site
   188  
   189  # mypy
   190  .mypy_cache/
   191  .dmypy.json
   192  dmypy.json
   193  
   194  # Pyre type checker
   195  .pyre/
   196  
   197  ### VirtualEnv ###
   198  # Virtualenv
   199  # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
   200  pyvenv.cfg
   201  .env
   202  .venv
   203  env/
   204  venv/
   205  ENV/
   206  env.bak/
   207  venv.bak/
   208  pip-selfcheck.json
   209  
   210  ### VisualStudioCode ###
   211  .vscode/*
   212  !.vscode/settings.json
   213  !.vscode/tasks.json
   214  !.vscode/launch.json
   215  !.vscode/extensions.json
   216  
   217  ### VisualStudioCode Patch ###
   218  # Ignore all local history of files
   219  .history
   220  
   221  ### Windows ###
   222  # Windows thumbnail cache files
   223  Thumbs.db
   224  Thumbs.db:encryptable
   225  ehthumbs.db
   226  ehthumbs_vista.db
   227  
   228  # Dump file
   229  *.stackdump
   230  
   231  # Folder config file
   232  [Dd]esktop.ini
   233  
   234  # Recycle Bin used on file shares
   235  $RECYCLE.BIN/
   236  
   237  # Windows Installer files
   238  *.cab
   239  *.msi
   240  *.msix
   241  *.msm
   242  *.msp
   243  
   244  # Windows shortcuts
   245  *.lnk
   246  
   247  # End of https://www.gitignore.io/api/go,java,linux,macos,python,windows,virtualenv,visualstudiocode
   248  
   249  # Custom rules
   250  downloads/
   251  generated-*/
   252  bin/*
   253  dist/*
   254  # Ignore the examples folder (also used as a branch)
   255  examples/* 
   256  test/*
   257  *debug_bin*
   258  clencli/log.json
   259  *.tmp*