Skip to content

Commit 8219079

Browse files
committed
Updated .gitignore
1 parent a86c291 commit 8219079

File tree

1 file changed

+113
-80
lines changed

1 file changed

+113
-80
lines changed

.gitignore

Lines changed: 113 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,108 @@
1-
# Created by https://www.gitignore.io/api/python,pycharm,osx
1+
# Created by https://www.gitignore.io/api/python,pycharm,linux,osx
2+
3+
### Linux ###
4+
*~
5+
6+
# temporary files which can be created if a process still has a handle open of a deleted file
7+
.fuse_hidden*
8+
9+
# KDE directory preferences
10+
.directory
11+
12+
# Linux trash folder which might appear on any partition or disk
13+
.Trash-*
14+
15+
# .nfs files are created when an open file is removed but is still being accessed
16+
.nfs*
17+
18+
### OSX ###
19+
*.DS_Store
20+
.AppleDouble
21+
.LSOverride
22+
23+
# Icon must end with two \r
24+
Icon
25+
26+
# Thumbnails
27+
._*
28+
29+
# Files that might appear in the root of a volume
30+
.DocumentRevisions-V100
31+
.fseventsd
32+
.Spotlight-V100
33+
.TemporaryItems
34+
.Trashes
35+
.VolumeIcon.icns
36+
.com.apple.timemachine.donotpresent
37+
38+
# Directories potentially created on remote AFP share
39+
.AppleDB
40+
.AppleDesktop
41+
Network Trash Folder
42+
Temporary Items
43+
.apdisk
44+
45+
### PyCharm ###
46+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
47+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
48+
49+
# User-specific stuff:
50+
.idea/**/workspace.xml
51+
.idea/**/tasks.xml
52+
.idea/dictionaries
53+
54+
# Sensitive or high-churn files:
55+
.idea/**/dataSources/
56+
.idea/**/dataSources.ids
57+
.idea/**/dataSources.xml
58+
.idea/**/dataSources.local.xml
59+
.idea/**/sqlDataSources.xml
60+
.idea/**/dynamic.xml
61+
.idea/**/uiDesigner.xml
62+
63+
# Gradle:
64+
.idea/**/gradle.xml
65+
.idea/**/libraries
66+
67+
# CMake
68+
cmake-build-debug/
69+
70+
# Mongo Explorer plugin:
71+
.idea/**/mongoSettings.xml
72+
73+
## File-based project format:
74+
*.iws
75+
76+
## Plugin-specific files:
77+
78+
# IntelliJ
79+
/out/
80+
81+
# mpeltonen/sbt-idea plugin
82+
.idea_modules/
83+
84+
# JIRA plugin
85+
atlassian-ide-plugin.xml
86+
87+
# Cursive Clojure plugin
88+
.idea/replstate.xml
89+
90+
# Crashlytics plugin (for Android Studio and IntelliJ)
91+
com_crashlytics_export_strings.xml
92+
crashlytics.properties
93+
crashlytics-build.properties
94+
fabric.properties
95+
96+
### PyCharm Patch ###
97+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
98+
99+
# *.iml
100+
# modules.xml
101+
# .idea/misc.xml
102+
# *.ipr
103+
104+
# Sonarlint plugin
105+
.idea/sonarlint
2106

3107
### Python ###
4108
# Byte-compiled / optimized / DLL files
@@ -79,96 +183,25 @@ target/
79183
# celery beat schedule file
80184
celerybeat-schedule
81185

186+
# SageMath parsed files
187+
*.sage.py
188+
82189
# dotenv
83190
.env
84191

85192
# virtualenv
86-
.venv/
193+
.venv
87194
venv/
88195
ENV/
89196

90197
# Spyder project settings
91198
.spyderproject
199+
.spyproject
92200

93201
# Rope project settings
94202
.ropeproject
95203

204+
# mkdocs documentation
205+
/site
96206

97-
### PyCharm ###
98-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
99-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
100-
101-
# User-specific stuff:
102-
.idea/workspace.xml
103-
.idea/tasks.xml
104-
105-
# Sensitive or high-churn files:
106-
.idea/dataSources/
107-
.idea/dataSources.ids
108-
.idea/dataSources.xml
109-
.idea/dataSources.local.xml
110-
.idea/sqlDataSources.xml
111-
.idea/dynamic.xml
112-
.idea/uiDesigner.xml
113-
114-
# Gradle:
115-
.idea/gradle.xml
116-
.idea/libraries
117-
118-
# Mongo Explorer plugin:
119-
.idea/mongoSettings.xml
120-
121-
## File-based project format:
122-
*.iws
123-
124-
## Plugin-specific files:
125-
126-
# IntelliJ
127-
/out/
128-
129-
# mpeltonen/sbt-idea plugin
130-
.idea_modules/
131-
132-
# JIRA plugin
133-
atlassian-ide-plugin.xml
134-
135-
# Crashlytics plugin (for Android Studio and IntelliJ)
136-
com_crashlytics_export_strings.xml
137-
crashlytics.properties
138-
crashlytics-build.properties
139-
fabric.properties
140-
141-
### PyCharm Patch ###
142-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
143-
144-
# *.iml
145-
# modules.xml
146-
# .idea/misc.xml
147-
# *.ipr
148-
149-
150-
### OSX ###
151-
*.DS_Store
152-
.AppleDouble
153-
.LSOverride
154-
155-
# Icon must end with two \r
156-
Icon
157-
# Thumbnails
158-
._*
159-
# Files that might appear in the root of a volume
160-
.DocumentRevisions-V100
161-
.fseventsd
162-
.Spotlight-V100
163-
.TemporaryItems
164-
.Trashes
165-
.VolumeIcon.icns
166-
.com.apple.timemachine.donotpresent
167-
# Directories potentially created on remote AFP share
168-
.AppleDB
169-
.AppleDesktop
170-
Network Trash Folder
171-
Temporary Items
172-
.apdisk
173-
174-
# End of https://www.gitignore.io/api/python,pycharm,osx
207+
# End of https://www.gitignore.io/api/python,pycharm,linux,osx

0 commit comments

Comments
 (0)