-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8df20a1
commit 5c31145
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Reminder: | ||
# - A leading slash means the pattern is anchored at the root. | ||
# - No leading slash means the pattern matches at any depth. | ||
|
||
# Python files | ||
*.pyc | ||
__pycache__/ | ||
.mypy_cache/ | ||
.tox/ | ||
*.egg-info/ | ||
/build/ | ||
/dist/ | ||
/.eggs/ | ||
|
||
# Sphinx documentation | ||
/docs/_build/ | ||
|
||
# IDE project files | ||
/.pydevproject | ||
|
||
# vim python-mode plugin | ||
/.ropeproject | ||
|
||
# IntelliJ IDEA / PyCharm project files | ||
/.idea | ||
/*.iml | ||
|
||
# JS/node/npm/web dev files | ||
node_modules | ||
npm-debug.log | ||
|
||
# OS X metadata files | ||
.DS_Store | ||
|
||
# Python coverage | ||
.coverage | ||
.coverage.* | ||
|
||
# Credential files | ||
/gcp-credentials.json | ||
/application_secrets.json | ||
|
||
# Temporary folder | ||
/tmp | ||
|
||
# Local environment configuration | ||
/environment.local | ||
/environment.*.local | ||
|
||
# Terraform files | ||
.terraform | ||
backend.tf | ||
providers.tf | ||
variables.tf | ||
|
||
/smoketest-*.tmp |