Skip to content

Commit 365cfcf

Browse files
author
Jack Maney
committed
Redid .gitignore, added Pycharm
1 parent 3e4f72b commit 365cfcf

File tree

1 file changed

+79
-11
lines changed

1 file changed

+79
-11
lines changed

.gitignore

Lines changed: 79 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
# Created by https://www.gitignore.io
1+
# Created by https://www.gitignore.io/api/python,ipythonnotebook,pycharm,osx,windows,linux
22

33
### Python ###
44
# Byte-compiled / optimized / DLL files
55
__pycache__/
66
*.py[cod]
7+
*$py.class
78

89
# C extensions
910
*.so
@@ -40,9 +41,11 @@ pip-delete-this-directory.txt
4041
htmlcov/
4142
.tox/
4243
.coverage
44+
.coverage.*
4345
.cache
4446
nosetests.xml
4547
coverage.xml
48+
*,cover
4649

4750
# Translations
4851
*.mo
@@ -63,6 +66,55 @@ target/
6366
.ipynb_checkpoints/
6467

6568

69+
### PyCharm ###
70+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
71+
72+
*.iml
73+
74+
## Directory-based project format:
75+
.idea/
76+
# if you remove the above rule, at least ignore the following:
77+
78+
# User-specific stuff:
79+
# .idea/workspace.xml
80+
# .idea/tasks.xml
81+
# .idea/dictionaries
82+
83+
# Sensitive or high-churn files:
84+
# .idea/dataSources.ids
85+
# .idea/dataSources.xml
86+
# .idea/sqlDataSources.xml
87+
# .idea/dynamic.xml
88+
# .idea/uiDesigner.xml
89+
90+
# Gradle:
91+
# .idea/gradle.xml
92+
# .idea/libraries
93+
94+
# Mongo Explorer plugin:
95+
# .idea/mongoSettings.xml
96+
97+
## File-based project format:
98+
*.ipr
99+
*.iws
100+
101+
## Plugin-specific files:
102+
103+
# IntelliJ
104+
/out/
105+
106+
# mpeltonen/sbt-idea plugin
107+
.idea_modules/
108+
109+
# JIRA plugin
110+
atlassian-ide-plugin.xml
111+
112+
# Crashlytics plugin (for Android Studio and IntelliJ)
113+
com_crashlytics_export_strings.xml
114+
crashlytics.properties
115+
crashlytics-build.properties
116+
117+
66118
### OSX ###
67119
.DS_Store
68120
.AppleDouble
@@ -74,9 +126,13 @@ Icon
74126
# Thumbnails
75127
._*
76128

77-
# Files that might appear on external disk
129+
# Files that might appear in the root of a volume
130+
.DocumentRevisions-V100
131+
.fseventsd
78132
.Spotlight-V100
133+
.TemporaryItems
79134
.Trashes
135+
.VolumeIcon.icns
80136

81137
# Directories potentially created on remote AFP share
82138
.AppleDB
@@ -86,6 +142,27 @@ Temporary Items
86142
.apdisk
87143

88144

145+
### Windows ###
146+
# Windows image file caches
147+
Thumbs.db
148+
ehthumbs.db
149+
150+
# Folder config file
151+
Desktop.ini
152+
153+
# Recycle Bin used on file shares
154+
$RECYCLE.BIN/
155+
156+
# Windows Installer files
157+
*.cab
158+
*.msi
159+
*.msm
160+
*.msp
161+
162+
# Windows shortcuts
163+
*.lnk
164+
165+
89166
### Linux ###
90167
*~
91168

@@ -95,12 +172,3 @@ Temporary Items
95172
# Linux trash folder which might appear on any partition or disk
96173
.Trash-*
97174

98-
99-
### Vim ###
100-
[._]*.s[a-w][a-z]
101-
[._]s[a-w][a-z]
102-
*.un~
103-
Session.vim
104-
.netrwhist
105-
*~
106-

0 commit comments

Comments
 (0)