Skip to content
This repository was archived by the owner on Sep 25, 2023. It is now read-only.

Commit 9a38a31

Browse files
committed
update
1 parent b1c8684 commit 9a38a31

File tree

1 file changed

+238
-0
lines changed

1 file changed

+238
-0
lines changed

.gitignore

Lines changed: 238 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,238 @@
1+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
2+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
3+
4+
# User-specific stuff
5+
.idea/**/workspace.xml
6+
.idea/**/tasks.xml
7+
.idea/**/usage.statistics.xml
8+
.idea/**/dictionaries
9+
.idea/**/shelf
10+
11+
# AWS User-specific
12+
.idea/**/aws.xml
13+
14+
# Generated files
15+
.idea/**/contentModel.xml
16+
17+
# Sensitive or high-churn files
18+
.idea/**/dataSources/
19+
.idea/**/dataSources.ids
20+
.idea/**/dataSources.local.xml
21+
.idea/**/sqlDataSources.xml
22+
.idea/**/dynamic.xml
23+
.idea/**/uiDesigner.xml
24+
.idea/**/dbnavigator.xml
25+
26+
# Gradle
27+
.idea/**/gradle.xml
28+
.idea/**/libraries
29+
30+
# Gradle and Maven with auto-import
31+
# When using Gradle or Maven with auto-import, you should exclude module files,
32+
# since they will be recreated, and may cause churn. Uncomment if using
33+
# auto-import.
34+
# .idea/artifacts
35+
# .idea/compiler.xml
36+
# .idea/jarRepositories.xml
37+
# .idea/modules.xml
38+
# .idea/*.iml
39+
# .idea/modules
40+
# *.iml
41+
# *.ipr
42+
43+
# CMake
44+
cmake-build-*/
45+
46+
# Mongo Explorer plugin
47+
.idea/**/mongoSettings.xml
48+
49+
# File-based project format
50+
*.iws
51+
52+
# IntelliJ
53+
out/
54+
55+
# mpeltonen/sbt-idea plugin
56+
.idea_modules/
57+
58+
# JIRA plugin
59+
atlassian-ide-plugin.xml
60+
61+
# Cursive Clojure plugin
62+
.idea/replstate.xml
63+
64+
# SonarLint plugin
65+
.idea/sonarlint/
66+
67+
# Crashlytics plugin (for Android Studio and IntelliJ)
68+
com_crashlytics_export_strings.xml
69+
crashlytics.properties
70+
crashlytics-build.properties
71+
fabric.properties
72+
73+
# Editor-based Rest Client
74+
.idea/httpRequests
75+
76+
# Android studio 3.1+ serialized cache file
77+
.idea/caches/build_file_checksums.ser
78+
79+
# Byte-compiled / optimized / DLL files
80+
__pycache__/
81+
*.py[cod]
82+
*$py.class
83+
84+
# C extensions
85+
*.so
86+
87+
# Distribution / packaging
88+
.Python
89+
build/
90+
develop-eggs/
91+
dist/
92+
downloads/
93+
eggs/
94+
.eggs/
95+
lib/
96+
lib64/
97+
parts/
98+
sdist/
99+
var/
100+
wheels/
101+
share/python-wheels/
102+
*.egg-info/
103+
.installed.cfg
104+
*.egg
105+
MANIFEST
106+
107+
# PyInstaller
108+
# Usually these files are written by a python script from a template
109+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
110+
*.manifest
111+
*.spec
112+
113+
# Installer logs
114+
pip-log.txt
115+
pip-delete-this-directory.txt
116+
117+
# Unit test / coverage reports
118+
htmlcov/
119+
.tox/
120+
.nox/
121+
.coverage
122+
.coverage.*
123+
.cache
124+
nosetests.xml
125+
coverage.xml
126+
*.cover
127+
*.py,cover
128+
.hypothesis/
129+
.pytest_cache/
130+
cover/
131+
132+
# Translations
133+
*.mo
134+
*.pot
135+
136+
# Django stuff:
137+
*.log
138+
local_settings.py
139+
db.sqlite3
140+
db.sqlite3-journal
141+
142+
# Flask stuff:
143+
instance/
144+
.webassets-cache
145+
146+
# Scrapy stuff:
147+
.scrapy
148+
149+
# Sphinx documentation
150+
docs/_build/
151+
152+
# PyBuilder
153+
.pybuilder/
154+
target/
155+
156+
# Jupyter Notebook
157+
.ipynb_checkpoints
158+
159+
# IPython
160+
profile_default/
161+
ipython_config.py
162+
163+
# pyenv
164+
# For a library or package, you might want to ignore these files since the code is
165+
# intended to run in multiple environments; otherwise, check them in:
166+
# .python-version
167+
168+
# pipenv
169+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
170+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
171+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
172+
# install all needed dependencies.
173+
#Pipfile.lock
174+
175+
# poetry
176+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
177+
# This is especially recommended for binary packages to ensure reproducibility, and is more
178+
# commonly ignored for libraries.
179+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
180+
#poetry.lock
181+
182+
# pdm
183+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
184+
#pdm.lock
185+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
186+
# in version control.
187+
# https://pdm.fming.dev/#use-with-ide
188+
.pdm.toml
189+
190+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
191+
__pypackages__/
192+
193+
# Celery stuff
194+
celerybeat-schedule
195+
celerybeat.pid
196+
197+
# SageMath parsed files
198+
*.sage.py
199+
200+
# Environments
201+
.env
202+
.venv
203+
env/
204+
venv/
205+
ENV/
206+
env.bak/
207+
venv.bak/
208+
209+
# Spyder project settings
210+
.spyderproject
211+
.spyproject
212+
213+
# Rope project settings
214+
.ropeproject
215+
216+
# mkdocs documentation
217+
/site
218+
219+
# mypy
220+
.mypy_cache/
221+
.dmypy.json
222+
dmypy.json
223+
224+
# Pyre type checker
225+
.pyre/
226+
227+
# pytype static type analyzer
228+
.pytype/
229+
230+
# Cython debug symbols
231+
cython_debug/
232+
233+
# PyCharm
234+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
235+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
236+
# and can be added to the global gitignore or merged into this file. For a more nuclear
237+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
238+
#.idea/

0 commit comments

Comments
 (0)