github.com/awslabs/clencli@v0.0.0-20210514234156-7ecf17182a20/box/resources/init/.gitignore (about) 1 2 # Created by https://www.toptal.com/developers/gitignore/api/go,java,linux,macos,python,windows,virtualenv,visualstudiocode,terraform,intellij 3 # Edit at https://www.toptal.com/developers/gitignore?templates=go,java,linux,macos,python,windows,virtualenv,visualstudiocode,terraform,intellij 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 ### Intellij ### 27 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 28 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 29 30 # User-specific stuff 31 .idea/**/workspace.xml 32 .idea/**/tasks.xml 33 .idea/**/usage.statistics.xml 34 .idea/**/dictionaries 35 .idea/**/shelf 36 37 # Generated files 38 .idea/**/contentModel.xml 39 40 # Sensitive or high-churn files 41 .idea/**/dataSources/ 42 .idea/**/dataSources.ids 43 .idea/**/dataSources.local.xml 44 .idea/**/sqlDataSources.xml 45 .idea/**/dynamic.xml 46 .idea/**/uiDesigner.xml 47 .idea/**/dbnavigator.xml 48 49 # Gradle 50 .idea/**/gradle.xml 51 .idea/**/libraries 52 53 # Gradle and Maven with auto-import 54 # When using Gradle or Maven with auto-import, you should exclude module files, 55 # since they will be recreated, and may cause churn. Uncomment if using 56 # auto-import. 57 # .idea/artifacts 58 # .idea/compiler.xml 59 # .idea/jarRepositories.xml 60 # .idea/modules.xml 61 # .idea/*.iml 62 # .idea/modules 63 # *.iml 64 # *.ipr 65 66 # CMake 67 cmake-build-*/ 68 69 # Mongo Explorer plugin 70 .idea/**/mongoSettings.xml 71 72 # File-based project format 73 *.iws 74 75 # IntelliJ 76 out/ 77 78 # mpeltonen/sbt-idea plugin 79 .idea_modules/ 80 81 # JIRA plugin 82 atlassian-ide-plugin.xml 83 84 # Cursive Clojure plugin 85 .idea/replstate.xml 86 87 # Crashlytics plugin (for Android Studio and IntelliJ) 88 com_crashlytics_export_strings.xml 89 crashlytics.properties 90 crashlytics-build.properties 91 fabric.properties 92 93 # Editor-based Rest Client 94 .idea/httpRequests 95 96 # Android studio 3.1+ serialized cache file 97 .idea/caches/build_file_checksums.ser 98 99 ### Intellij Patch ### 100 # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 101 102 # *.iml 103 # modules.xml 104 # .idea/misc.xml 105 # *.ipr 106 107 # Sonarlint plugin 108 # https://plugins.jetbrains.com/plugin/7973-sonarlint 109 .idea/**/sonarlint/ 110 111 # SonarQube Plugin 112 # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin 113 .idea/**/sonarIssues.xml 114 115 # Markdown Navigator plugin 116 # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced 117 .idea/**/markdown-navigator.xml 118 .idea/**/markdown-navigator-enh.xml 119 .idea/**/markdown-navigator/ 120 121 # Cache file creation bug 122 # See https://youtrack.jetbrains.com/issue/JBR-2257 123 .idea/$CACHE_FILE$ 124 125 # CodeStream plugin 126 # https://plugins.jetbrains.com/plugin/12206-codestream 127 .idea/codestream.xml 128 129 ### Java ### 130 # Compiled class file 131 *.class 132 133 # Log file 134 *.log 135 136 # BlueJ files 137 *.ctxt 138 139 # Mobile Tools for Java (J2ME) 140 .mtj.tmp/ 141 142 # Package Files # 143 *.jar 144 *.war 145 *.nar 146 *.ear 147 *.zip 148 *.tar.gz 149 *.rar 150 151 # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 152 hs_err_pid* 153 154 ### Linux ### 155 *~ 156 157 # temporary files which can be created if a process still has a handle open of a deleted file 158 .fuse_hidden* 159 160 # KDE directory preferences 161 .directory 162 163 # Linux trash folder which might appear on any partition or disk 164 .Trash-* 165 166 # .nfs files are created when an open file is removed but is still being accessed 167 .nfs* 168 169 ### macOS ### 170 # General 171 .DS_Store 172 .AppleDouble 173 .LSOverride 174 175 # Icon must end with two \r 176 Icon 177 178 179 # Thumbnails 180 ._* 181 182 # Files that might appear in the root of a volume 183 .DocumentRevisions-V100 184 .fseventsd 185 .Spotlight-V100 186 .TemporaryItems 187 .Trashes 188 .VolumeIcon.icns 189 .com.apple.timemachine.donotpresent 190 191 # Directories potentially created on remote AFP share 192 .AppleDB 193 .AppleDesktop 194 Network Trash Folder 195 Temporary Items 196 .apdisk 197 198 ### Python ### 199 # Byte-compiled / optimized / DLL files 200 __pycache__/ 201 *.py[cod] 202 *$py.class 203 204 # C extensions 205 206 # Distribution / packaging 207 .Python 208 build/ 209 develop-eggs/ 210 dist/ 211 downloads/ 212 eggs/ 213 .eggs/ 214 lib/ 215 lib64/ 216 parts/ 217 sdist/ 218 var/ 219 wheels/ 220 pip-wheel-metadata/ 221 share/python-wheels/ 222 *.egg-info/ 223 .installed.cfg 224 *.egg 225 MANIFEST 226 227 # PyInstaller 228 # Usually these files are written by a python script from a template 229 # before PyInstaller builds the exe, so as to inject date/other infos into it. 230 *.manifest 231 *.spec 232 233 # Installer logs 234 pip-log.txt 235 pip-delete-this-directory.txt 236 237 # Unit test / coverage reports 238 htmlcov/ 239 .tox/ 240 .nox/ 241 .coverage 242 .coverage.* 243 .cache 244 nosetests.xml 245 coverage.xml 246 *.cover 247 *.py,cover 248 .hypothesis/ 249 .pytest_cache/ 250 pytestdebug.log 251 252 # Translations 253 *.mo 254 *.pot 255 256 # Django stuff: 257 local_settings.py 258 db.sqlite3 259 db.sqlite3-journal 260 261 # Flask stuff: 262 instance/ 263 .webassets-cache 264 265 # Scrapy stuff: 266 .scrapy 267 268 # Sphinx documentation 269 docs/_build/ 270 doc/_build/ 271 272 # PyBuilder 273 target/ 274 275 # Jupyter Notebook 276 .ipynb_checkpoints 277 278 # IPython 279 profile_default/ 280 ipython_config.py 281 282 # pyenv 283 .python-version 284 285 # pipenv 286 # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 287 # However, in case of collaboration, if having platform-specific dependencies or dependencies 288 # having no cross-platform support, pipenv may install dependencies that don't work, or not 289 # install all needed dependencies. 290 #Pipfile.lock 291 292 # PEP 582; used by e.g. github.com/David-OConnor/pyflow 293 __pypackages__/ 294 295 # Celery stuff 296 celerybeat-schedule 297 celerybeat.pid 298 299 # SageMath parsed files 300 *.sage.py 301 302 # Environments 303 .env 304 .venv 305 env/ 306 venv/ 307 ENV/ 308 env.bak/ 309 venv.bak/ 310 pythonenv* 311 312 # Spyder project settings 313 .spyderproject 314 .spyproject 315 316 # Rope project settings 317 .ropeproject 318 319 # mkdocs documentation 320 /site 321 322 # mypy 323 .mypy_cache/ 324 .dmypy.json 325 dmypy.json 326 327 # Pyre type checker 328 .pyre/ 329 330 # pytype static type analyzer 331 .pytype/ 332 333 # profiling data 334 .prof 335 336 ### Terraform ### 337 # Local .terraform directories 338 **/.terraform/* 339 340 # .tfstate files 341 *.tfstate 342 *.tfstate.* 343 344 # Crash log files 345 crash.log 346 347 # Ignore any .tfvars files that are generated automatically for each Terraform run. Most 348 # .tfvars files are managed as part of configuration and so should be included in 349 # version control. 350 # 351 # example.tfvars 352 353 # Ignore override files as they are usually used to override resources locally and so 354 # are not checked in 355 override.tf 356 override.tf.json 357 *_override.tf 358 *_override.tf.json 359 360 # Include override files you do wish to add to version control using negated pattern 361 # !example_override.tf 362 363 # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan 364 # example: *tfplan* 365 366 ### VirtualEnv ### 367 # Virtualenv 368 # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ 369 [Bb]in 370 [Ii]nclude 371 [Ll]ib 372 [Ll]ib64 373 [Ll]ocal 374 [Ss]cripts 375 pyvenv.cfg 376 pip-selfcheck.json 377 378 ### VisualStudioCode ### 379 .vscode/* 380 !.vscode/tasks.json 381 !.vscode/launch.json 382 *.code-workspace 383 384 ### VisualStudioCode Patch ### 385 # Ignore all local history of files 386 .history 387 .ionide 388 389 ### Windows ### 390 # Windows thumbnail cache files 391 Thumbs.db 392 Thumbs.db:encryptable 393 ehthumbs.db 394 ehthumbs_vista.db 395 396 # Dump file 397 *.stackdump 398 399 # Folder config file 400 [Dd]esktop.ini 401 402 # Recycle Bin used on file shares 403 $RECYCLE.BIN/ 404 405 # Windows Installer files 406 *.cab 407 *.msi 408 *.msix 409 *.msm 410 *.msp 411 412 # Windows shortcuts 413 *.lnk 414 415 # End of https://www.toptal.com/developers/gitignore/api/go,java,linux,macos,python,windows,virtualenv,visualstudiocode,terraform,intellij 416 417 # CLENCLI Files 418 clencli/log.json