Skip to content

Commit 4b2d02a

Browse files
committed
Add more ignores.
1 parent 0fb0768 commit 4b2d02a

File tree

1 file changed

+193
-0
lines changed

1 file changed

+193
-0
lines changed

.gitignore

+193
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.idea
2+
13
*.sw[a-z]
24
*.pyc
35
build/
@@ -9,3 +11,194 @@ src/bison_.cpython-35m-x86_64-linux-gnu.so
911
examples/java/javaparser.py
1012
dist/
1113
*.so
14+
### JetBrains template
15+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
16+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
17+
18+
# User-specific stuff:
19+
.idea/**/workspace.xml
20+
.idea/**/tasks.xml
21+
.idea/dictionaries
22+
23+
# Sensitive or high-churn files:
24+
.idea/**/dataSources/
25+
.idea/**/dataSources.ids
26+
.idea/**/dataSources.xml
27+
.idea/**/dataSources.local.xml
28+
.idea/**/sqlDataSources.xml
29+
.idea/**/dynamic.xml
30+
.idea/**/uiDesigner.xml
31+
32+
# Gradle:
33+
.idea/**/gradle.xml
34+
.idea/**/libraries
35+
36+
# CMake
37+
cmake-build-debug/
38+
39+
# Mongo Explorer plugin:
40+
.idea/**/mongoSettings.xml
41+
42+
## File-based project format:
43+
*.iws
44+
45+
## Plugin-specific files:
46+
47+
# IntelliJ
48+
out/
49+
50+
# mpeltonen/sbt-idea plugin
51+
.idea_modules/
52+
53+
# JIRA plugin
54+
atlassian-ide-plugin.xml
55+
56+
# Cursive Clojure plugin
57+
.idea/replstate.xml
58+
59+
# Crashlytics plugin (for Android Studio and IntelliJ)
60+
com_crashlytics_export_strings.xml
61+
crashlytics.properties
62+
crashlytics-build.properties
63+
fabric.properties
64+
### macOS template
65+
# General
66+
.DS_Store
67+
.AppleDouble
68+
.LSOverride
69+
70+
# Icon must end with two \r
71+
Icon
72+
73+
# Thumbnails
74+
._*
75+
76+
# Files that might appear in the root of a volume
77+
.DocumentRevisions-V100
78+
.fseventsd
79+
.Spotlight-V100
80+
.TemporaryItems
81+
.Trashes
82+
.VolumeIcon.icns
83+
.com.apple.timemachine.donotpresent
84+
85+
# Directories potentially created on remote AFP share
86+
.AppleDB
87+
.AppleDesktop
88+
Network Trash Folder
89+
Temporary Items
90+
.apdisk
91+
### Linux template
92+
*~
93+
94+
# temporary files which can be created if a process still has a handle open of a deleted file
95+
.fuse_hidden*
96+
97+
# KDE directory preferences
98+
.directory
99+
100+
# Linux trash folder which might appear on any partition or disk
101+
.Trash-*
102+
103+
# .nfs files are created when an open file is removed but is still being accessed
104+
.nfs*
105+
### Python template
106+
# Byte-compiled / optimized / DLL files
107+
__pycache__/
108+
*.py[cod]
109+
*$py.class
110+
111+
# C extensions
112+
113+
# Distribution / packaging
114+
.Python
115+
develop-eggs/
116+
downloads/
117+
eggs/
118+
.eggs/
119+
lib/
120+
lib64/
121+
parts/
122+
sdist/
123+
var/
124+
wheels/
125+
*.egg-info/
126+
.installed.cfg
127+
*.egg
128+
MANIFEST
129+
130+
# PyInstaller
131+
# Usually these files are written by a python script from a template
132+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
133+
*.manifest
134+
*.spec
135+
136+
# Installer logs
137+
pip-log.txt
138+
pip-delete-this-directory.txt
139+
140+
# Unit test / coverage reports
141+
htmlcov/
142+
.tox/
143+
.coverage
144+
.coverage.*
145+
.cache
146+
nosetests.xml
147+
coverage.xml
148+
*.cover
149+
.hypothesis/
150+
151+
# Translations
152+
*.mo
153+
*.pot
154+
155+
# Django stuff:
156+
*.log
157+
local_settings.py
158+
159+
# Flask stuff:
160+
instance/
161+
.webassets-cache
162+
163+
# Scrapy stuff:
164+
.scrapy
165+
166+
# Sphinx documentation
167+
docs/_build/
168+
169+
# PyBuilder
170+
target/
171+
172+
# Jupyter Notebook
173+
.ipynb_checkpoints
174+
175+
# pyenv
176+
.python-version
177+
178+
# celery beat schedule file
179+
celerybeat-schedule
180+
181+
# SageMath parsed files
182+
*.sage.py
183+
184+
# Environments
185+
.env
186+
.venv
187+
env/
188+
venv/
189+
ENV/
190+
env.bak/
191+
venv.bak/
192+
193+
# Spyder project settings
194+
.spyderproject
195+
.spyproject
196+
197+
# Rope project settings
198+
.ropeproject
199+
200+
# mkdocs documentation
201+
/site
202+
203+
# mypy
204+
.mypy_cache/

0 commit comments

Comments
 (0)