-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
134 lines (103 loc) · 1.8 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
###### 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/
# Ignore the output folder of the compiled TypeScript code
lib
###### 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/**