Skip to content

Commit 734fb19

Browse files
committed
Add .gitignore
1 parent f5f3a23 commit 734fb19

File tree

1 file changed

+290
-0
lines changed

1 file changed

+290
-0
lines changed

.gitignore

Lines changed: 290 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,290 @@
1+
vale-styles
2+
.vercel
3+
4+
# Logs
5+
logs
6+
*.log
7+
npm-debug.log*
8+
yarn-debug.log*
9+
yarn-error.log*
10+
lerna-debug.log*
11+
.pnpm-debug.log*
12+
13+
# Diagnostic reports (https://nodejs.org/api/report.html)
14+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
15+
16+
# Runtime data
17+
pids
18+
*.pid
19+
*.seed
20+
*.pid.lock
21+
22+
# Directory for instrumented libs generated by jscoverage/JSCover
23+
lib-cov
24+
25+
# Coverage directory used by tools like istanbul
26+
coverage
27+
*.lcov
28+
29+
# nyc test coverage
30+
.nyc_output
31+
32+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
33+
.grunt
34+
35+
# Bower dependency directory (https://bower.io/)
36+
bower_components
37+
38+
# node-waf configuration
39+
.lock-wscript
40+
41+
# Compiled binary addons (https://nodejs.org/api/addons.html)
42+
build/Release
43+
44+
# Dependency directories
45+
node_modules/
46+
jspm_packages/
47+
48+
# Snowpack dependency directory (https://snowpack.dev/)
49+
web_modules/
50+
51+
# TypeScript cache
52+
*.tsbuildinfo
53+
54+
# Optional npm cache directory
55+
.npm
56+
57+
# Optional eslint cache
58+
.eslintcache
59+
60+
# Optional stylelint cache
61+
.stylelintcache
62+
63+
# Microbundle cache
64+
.rpt2_cache/
65+
.rts2_cache_cjs/
66+
.rts2_cache_es/
67+
.rts2_cache_umd/
68+
69+
# Optional REPL history
70+
.node_repl_history
71+
72+
# Output of 'npm pack'
73+
*.tgz
74+
75+
# Yarn Integrity file
76+
.yarn-integrity
77+
78+
# dotenv environment variable files
79+
.env
80+
.env.development.local
81+
.env.test.local
82+
.env.production.local
83+
.env.local
84+
85+
# parcel-bundler cache (https://parceljs.org/)
86+
.cache
87+
.parcel-cache
88+
89+
# Next.js build output
90+
.next
91+
out
92+
93+
# Nuxt.js build / generate output
94+
.nuxt
95+
dist
96+
97+
# Gatsby files
98+
.cache/
99+
# Comment in the public line in if your project uses Gatsby and not Next.js
100+
# https://nextjs.org/blog/next-9-1#public-directory-support
101+
# public
102+
103+
# vuepress build output
104+
.vuepress/dist
105+
106+
# vuepress v2.x temp and cache directory
107+
.temp
108+
.cache
109+
110+
# Docusaurus cache and generated files
111+
.docusaurus
112+
113+
# Serverless directories
114+
.serverless/
115+
116+
# FuseBox cache
117+
.fusebox/
118+
119+
# DynamoDB Local files
120+
.dynamodb/
121+
122+
# TernJS port file
123+
.tern-port
124+
125+
# Stores VSCode versions used for testing VSCode extensions
126+
.vscode-test
127+
128+
# yarn v2
129+
.yarn/cache
130+
.yarn/unplugged
131+
.yarn/build-state.yml
132+
.yarn/install-state.gz
133+
.pnp.*
134+
135+
# Byte-compiled / optimized / DLL files
136+
__pycache__/
137+
*.py[cod]
138+
*$py.class
139+
140+
# C extensions
141+
*.so
142+
143+
# Distribution / packaging
144+
.Python
145+
build/
146+
develop-eggs/
147+
dist/
148+
downloads/
149+
eggs/
150+
.eggs/
151+
lib64/
152+
parts/
153+
sdist/
154+
var/
155+
wheels/
156+
share/python-wheels/
157+
*.egg-info/
158+
.installed.cfg
159+
*.egg
160+
MANIFEST
161+
162+
# PyInstaller
163+
# Usually these files are written by a python script from a template
164+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
165+
*.manifest
166+
*.spec
167+
168+
# Installer logs
169+
pip-log.txt
170+
pip-delete-this-directory.txt
171+
172+
# Unit test / coverage reports
173+
htmlcov/
174+
.tox/
175+
.nox/
176+
.coverage
177+
.coverage.*
178+
.cache
179+
nosetests.xml
180+
coverage.xml
181+
*.cover
182+
*.py,cover
183+
.hypothesis/
184+
.pytest_cache/
185+
cover/
186+
187+
# Translations
188+
*.mo
189+
*.pot
190+
191+
# Django stuff:
192+
*.log
193+
local_settings.py
194+
db.sqlite3
195+
db.sqlite3-journal
196+
197+
# Flask stuff:
198+
instance/
199+
.webassets-cache
200+
201+
# Scrapy stuff:
202+
.scrapy
203+
204+
# Sphinx documentation
205+
docs/_build/
206+
207+
# PyBuilder
208+
.pybuilder/
209+
target/
210+
211+
# Jupyter Notebook
212+
.ipynb_checkpoints
213+
214+
# IPython
215+
profile_default/
216+
ipython_config.py
217+
218+
# pyenv
219+
# For a library or package, you might want to ignore these files since the code is
220+
# intended to run in multiple environments; otherwise, check them in:
221+
# .python-version
222+
223+
# pipenv
224+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
225+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
226+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
227+
# install all needed dependencies.
228+
#Pipfile.lock
229+
230+
# poetry
231+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
232+
# This is especially recommended for binary packages to ensure reproducibility, and is more
233+
# commonly ignored for libraries.
234+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
235+
#poetry.lock
236+
237+
# pdm
238+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
239+
#pdm.lock
240+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
241+
# in version control.
242+
# https://pdm.fming.dev/#use-with-ide
243+
.pdm.toml
244+
245+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
246+
__pypackages__/
247+
248+
# Celery stuff
249+
celerybeat-schedule
250+
celerybeat.pid
251+
252+
# SageMath parsed files
253+
*.sage.py
254+
255+
# Environments
256+
.env
257+
.venv
258+
env.bak/
259+
venv.bak/
260+
261+
# Spyder project settings
262+
.spyderproject
263+
.spyproject
264+
265+
# Rope project settings
266+
.ropeproject
267+
268+
# mkdocs documentation
269+
/site
270+
271+
# mypy
272+
.mypy_cache/
273+
.dmypy.json
274+
dmypy.json
275+
276+
# Pyre type checker
277+
.pyre/
278+
279+
# pytype static type analyzer
280+
.pytype/
281+
282+
# Cython debug symbols
283+
cython_debug/
284+
285+
# PyCharm
286+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
287+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
288+
# and can be added to the global gitignore or merged into this file. For a more nuclear
289+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
290+
.idea/

0 commit comments

Comments
 (0)