-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
184 lines (143 loc) · 2.85 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
.ccls-cache
config/nvim/.netrwhist
config/btop/*.log
config/weechat/xfer
config/weechat/logs
config/weechat/*.log
/.blackbox/pubring.gpg~
/.blackbox/pubring.kbx~
/.blackbox/secring.gpg
/config/ranger/bookmarks
/config/weechat/script/plugins.xml.gz
##### MOCULL AUTOGENERATED ### DO NOT EDIT #####
# NOTE: You cannot add comments to the *end* of a line, only the beginning!
# https://git-scm.com/docs/gitignore
# Build directories
/bin/
/obj/
/out/
/build/
/target/
# Rust / Cargo
## These are backup files generated by rustfmt
**/*.rs.bk
## MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# IDE specific files
/.idea/
/.vscode/
*.swp
*.swo
*~
*.sublime-workspace
# Compiled source
*.com
*.class
*.dll
*.exe
*.o
*.so
# Logs and databases
*.log
*.sql
*.sqlite
logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Dependency directories
/node_modules/
/jspm_packages/
/bower_components/
## Grunt intermediate storage
.grunt
# Python
*.py[cod]
__pycache__/
*.pyc
# Virtual environments
venv/
## NOTE: Sometimes this is a file (not a directory) that acts as a pointer.
.venv
# Runtime data
pids
*.pid
*.seed
.cache/
.pytest_cache/
## mypy
.mypy_cache/
## poetry
poetry.lock
## Jupyter Notebook
.ipynb_checkpoints
## pyenv
.python-version
## pipenv
Pipfile.lock
# Coverage
## Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
## Coverage directory used by tools like istanbul
coverage
## nyc test coverage
.nyc_output
# NodeJS
## node-waf configuration
.lock-wscript
## Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
## TypeScript v1 declaration files
typings/
## Optional npm cache directory
.npm
## Optional eslint cache
.eslintcache
## TernJS port file
.tern-port
## parcel-bundler cache (https://parceljs.org/)
.cache
## Yarn Integrity file
.yarn-integrity
## next.js build output
.next
## nuxt.js build output
.nuxt
## vuepress build output
.vuepress/dist
## Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# Terraform
*.tfstate
*.tfstate.*
## Local .terraform directories
**/.terraform/*
## Ignore any .tfvars files that are generated automatically for each Terraform run. Most
## .tfvars files are managed as part of configuration and so should be included in
## version control.
##
## example.tfvars
## Ignore override files as they are usually used to override resources locally and so
## are not checked in
override.tf
override.tf.json
*_override.tf
*_override.tf.json
## Include override files you do wish to add to version control using negated pattern
##
## !example_override.tf
## Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
## example: *tfplan*
##### END MOCULL AUTOGENERATED ### DO NOT EDIT #####