Skip to content

Commit 00f11dd

Browse files
add gitignore
1 parent 5ca5c29 commit 00f11dd

File tree

1 file changed

+169
-0
lines changed

1 file changed

+169
-0
lines changed

.gitignore

Lines changed: 169 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,169 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Example user template template
3+
### Example user template
4+
5+
# IntelliJ project files
6+
.idea
7+
*.iml
8+
out
9+
gen### Example user template template
10+
### Example user template
11+
12+
# IntelliJ project files
13+
.idea
14+
*.iml
15+
out
16+
gen### JetBrains template
17+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
18+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
19+
20+
# User-specific stuff:
21+
.idea/**/workspace.xml
22+
.idea/**/tasks.xml
23+
.idea/dictionaries
24+
25+
# Sensitive or high-churn files:
26+
.idea/**/dataSources/
27+
.idea/**/dataSources.ids
28+
.idea/**/dataSources.xml
29+
.idea/**/dataSources.local.xml
30+
.idea/**/sqlDataSources.xml
31+
.idea/**/dynamic.xml
32+
.idea/**/uiDesigner.xml
33+
34+
# Gradle:
35+
.idea/**/gradle.xml
36+
.idea/**/libraries
37+
38+
# CMake
39+
cmake-build-debug/
40+
41+
# Mongo Explorer plugin:
42+
.idea/**/mongoSettings.xml
43+
44+
## File-based project format:
45+
*.iws
46+
47+
## Plugin-specific files:
48+
49+
# IntelliJ
50+
out/
51+
52+
# mpeltonen/sbt-idea plugin
53+
.idea_modules/
54+
55+
# JIRA plugin
56+
atlassian-ide-plugin.xml
57+
58+
# Cursive Clojure plugin
59+
.idea/replstate.xml
60+
61+
# Crashlytics plugin (for Android Studio and IntelliJ)
62+
com_crashlytics_export_strings.xml
63+
crashlytics.properties
64+
crashlytics-build.properties
65+
fabric.properties
66+
### Python template
67+
# Byte-compiled / optimized / DLL files
68+
__pycache__/
69+
*.py[cod]
70+
*$py.class
71+
72+
# C extensions
73+
*.so
74+
75+
# Distribution / packaging
76+
.Python
77+
build/
78+
develop-eggs/
79+
dist/
80+
downloads/
81+
eggs/
82+
.eggs/
83+
lib/
84+
lib64/
85+
parts/
86+
sdist/
87+
var/
88+
wheels/
89+
*.egg-info/
90+
.installed.cfg
91+
*.egg
92+
93+
# PyInstaller
94+
# Usually these files are written by a python script from a template
95+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
96+
*.manifest
97+
*.spec
98+
99+
# Installer logs
100+
pip-log.txt
101+
pip-delete-this-directory.txt
102+
103+
# Unit test / coverage reports
104+
htmlcov/
105+
.tox/
106+
.coverage
107+
.coverage.*
108+
.cache
109+
nosetests.xml
110+
coverage.xml
111+
*.cover
112+
.hypothesis/
113+
114+
# Translations
115+
*.mo
116+
*.pot
117+
118+
# Django stuff:
119+
*.log
120+
local_settings.py
121+
122+
# Flask stuff:
123+
instance/
124+
.webassets-cache
125+
126+
# Scrapy stuff:
127+
.scrapy
128+
129+
# Sphinx documentation
130+
docs/_build/
131+
132+
# PyBuilder
133+
target/
134+
135+
# Jupyter Notebook
136+
.ipynb_checkpoints
137+
138+
# pyenv
139+
.python-version
140+
141+
# celery beat schedule file
142+
celerybeat-schedule
143+
144+
# SageMath parsed files
145+
*.sage.py
146+
147+
# Environments
148+
.env
149+
.venv
150+
env/
151+
venv/
152+
ENV/
153+
154+
# Spyder project settings
155+
.spyderproject
156+
.spyproject
157+
158+
# Rope project settings
159+
.ropeproject
160+
161+
# mkdocs documentation
162+
/site
163+
164+
# mypy
165+
.mypy_cache/
166+
167+
tmp/
168+
python/dnlp/data/
169+
python/dnlp/models/

0 commit comments

Comments
 (0)