-
Notifications
You must be signed in to change notification settings - Fork 2
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
0 parents
commit 23d08c5
Showing
2 changed files
with
133 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,131 @@ | ||
###### Nylas Developing ##### | ||
# Used to store sync snapshots. See redwood/admin/snapshot | ||
.snapshots | ||
|
||
# Used to store local data generated from dev runs like logs and message | ||
# parts | ||
.dev_data | ||
|
||
# Used by nylas/services/sync/scripts/compare-account-status | ||
account_statuses.* | ||
|
||
|
||
###### Nylas Testing ##### | ||
# Unit test / coverage reports | ||
.cache | ||
.coverage | ||
.hypothesis | ||
nosetests.xml | ||
pytestdebug.log | ||
.pytest_cache | ||
.test_data/ | ||
|
||
###### Nylas Building ##### | ||
# Ignorable Debian files when dpkg runs | ||
debian/cloud-core* | ||
debian/debhelper-build-stamp | ||
debian/.debhelper | ||
debian/files | ||
build/ | ||
|
||
# Build dirs for FaaS systems (e.g. AWS Lambda) | ||
fn_build/ | ||
|
||
|
||
###### Python ##### | ||
# Ignore common virtualenv names | ||
venv | ||
.venv | ||
venv3 | ||
.venv3 | ||
|
||
# Created when installing python packages | ||
*.egg | ||
*.egg-info | ||
.Python | ||
bin/wheel | ||
pip-log.txt | ||
pip-selfcheck.json | ||
|
||
# Ignore Python binary files & metadata | ||
*.py[cod] | ||
__pycache__ | ||
|
||
# Used for mypy linter | ||
.mypy_cache | ||
|
||
# pycharm | ||
.idea/ | ||
|
||
# autoflake | ||
.magicindex.json | ||
|
||
|
||
###### Javascript ##### | ||
node_modules | ||
lerna-debug.log | ||
npm-debug.log | ||
yarn-error.log | ||
package-lock.json | ||
|
||
###### OS ##### | ||
# Ignore Mac folder metadata | ||
.DS_Store | ||
|
||
# Vagrant | ||
.vagrant | ||
|
||
# Translations | ||
*.mo | ||
|
||
# vim temporary files | ||
*.swp | ||
*.swo | ||
|
||
# emacs files | ||
*~ | ||
*# | ||
|
||
# ctags | ||
tags | ||
TAGS | ||
.tags | ||
.tags1 | ||
|
||
# terraform state directories | ||
.terraform/ | ||
*.tfstate.backup | ||
.terraform | ||
|
||
# terragrunt exclusions | ||
.terragrunt-cache/ | ||
provider.tf | ||
backend.tf | ||
|
||
# Ignore local vimrcs | ||
.vimrc | ||
.vemv/ | ||
|
||
# Ignore VS Code files | ||
.vscode | ||
|
||
# For Ack ignores that aren't in .gitignore | ||
.ignore | ||
|
||
###### Infrastructure ###### | ||
# Ansible | ||
.boto | ||
vault-password-file.txt | ||
.vaults.txt | ||
.ansible-test | ||
|
||
# Elastic Beanstalk Files | ||
.elasticbeanstalk/* | ||
!.elasticbeanstalk/*.cfg.yml | ||
!.elasticbeanstalk/*.global.yml | ||
|
||
# testing area | ||
area51 | ||
|
||
###### Docker ###### | ||
!.docker/** |
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,2 @@ | ||
# StandardTemplate | ||
Standard template with branch protections |