github.com/aws-cloudformation/cloudformation-cli-go-plugin@v1.2.0/.gitignore (about) 1 # Byte-compiled / optimized / DLL files 2 __pycache__/ 3 *.py[cod] 4 *$py.class 5 6 # C extensions 7 *.so 8 9 # Distribution / packaging 10 .Python 11 env/ 12 build/ 13 develop-eggs/ 14 dist/ 15 downloads/ 16 eggs/ 17 .eggs/ 18 lib/ 19 lib64/ 20 parts/ 21 sdist/ 22 var/ 23 wheels/ 24 *.egg-info/ 25 .installed.cfg 26 *.egg 27 .vscode 28 *.code-workspace 29 .project 30 bin/ 31 32 # PyInstaller 33 # Usually these files are written by a python script from a template 34 # before PyInstaller builds the exe, so as to inject date/other infos into it. 35 *.manifest 36 *.spec 37 38 # Installer logs 39 pip-log.txt 40 pip-delete-this-directory.txt 41 42 # Unit test / coverage reports 43 htmlcov/ 44 .tox/ 45 .coverage 46 .coverage.* 47 .cache 48 nosetests.xml 49 coverage.xml 50 *,cover 51 .hypothesis/ 52 .pytest_cache/ 53 54 # Translations 55 *.mo 56 *.pot 57 58 # Django stuff: 59 *.log 60 local_settings.py 61 62 # Flask stuff: 63 instance/ 64 .webassets-cache 65 66 # Scrapy stuff: 67 .scrapy 68 69 # Sphinx documentation 70 docs/_build/ 71 72 # PyBuilder 73 target/ 74 75 # Jupyter Notebook 76 .ipynb_checkpoints 77 78 # pyenv 79 .python-version 80 81 # celery beat schedule file 82 celerybeat-schedule 83 84 # SageMath parsed files 85 *.sage.py 86 87 # dotenv 88 .env 89 90 # virtualenv 91 .venv 92 venv/ 93 ENV/ 94 95 # Spyder project settings 96 .spyderproject 97 .spyproject 98 99 # Rope project settings 100 .ropeproject 101 102 # mkdocs documentation 103 /site 104 105 # macOS 106 .DS_Store 107 ._* 108 109 # PyCharm 110 *.iml 111 112 # reStructuredText preview 113 README.html 114 115 .idea 116 out.java 117 out/ 118 tmp/ 119 120 # Binaries for programs and plugins 121 *.exe 122 *.exe~ 123 *.dll 124 *.so 125 *.dylib 126 127 # Test binary, built with `go test -c` 128 *.test 129 130 # Output of the go coverage tool, specifically when used with LiteIDE 131 *.out 132 133 # Dependency directories (remove the comment below to include it) 134 # vendor/