Diff of /.gitignore [000000] .. [70b6b3]

Switch to unified view

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