Skip to content

Commit cf06fd9

Browse files
committed
update for .gitignore
1 parent 2d35a5b commit cf06fd9

1 file changed

Lines changed: 240 additions & 0 deletions

File tree

.gitignore

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

0 commit comments

Comments
 (0)