Skip to content

Commit 39965f1

Browse files
author
Pipeline
committed
WIP
1 parent 9152d51 commit 39965f1

File tree

1 file changed

+92
-1
lines changed

1 file changed

+92
-1
lines changed

.gitignore

Lines changed: 92 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Python template
13
# Byte-compiled / optimized / DLL files
24
__pycache__/
35
*.py[cod]
6+
*$py.class
47

58
# C extensions
69
*.so
@@ -42,19 +45,107 @@ htmlcov/
4245
nosetests.xml
4346
coverage.xml
4447
*,cover
48+
.hypothesis/
4549

4650
# Translations
4751
*.mo
4852
*.pot
4953

5054
# Django stuff:
5155
*.log
56+
local_settings.py
57+
58+
# Flask stuff:
59+
instance/
60+
.webassets-cache
61+
62+
# Scrapy stuff:
63+
.scrapy
5264

5365
# Sphinx documentation
5466
docs/_build/
5567

5668
# PyBuilder
5769
target/
5870

59-
#PyCharm
71+
# IPython Notebook
72+
.ipynb_checkpoints
73+
74+
# pyenv
75+
.python-version
76+
77+
# celery beat schedule file
78+
celerybeat-schedule
79+
80+
# dotenv
81+
.env
82+
83+
# virtualenv
84+
venv/
85+
ENV/
86+
87+
# Spyder project settings
88+
.spyderproject
89+
90+
# Rope project settings
91+
.ropeproject
92+
### VirtualEnv template
93+
# Virtualenv
94+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
95+
.Python
96+
[Bb]in
97+
[Ii]nclude
98+
[Ll]ib
99+
[Ll]ib64
100+
[Ll]ocal
101+
[Ss]cripts
102+
pyvenv.cfg
103+
.venv
104+
pip-selfcheck.json
105+
### JetBrains template
106+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
107+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
108+
109+
# User-specific stuff:
110+
.idea/workspace.xml
111+
.idea/tasks.xml
112+
.idea/dictionaries
113+
.idea/vcs.xml
114+
.idea/jsLibraryMappings.xml
115+
116+
# Sensitive or high-churn files:
117+
.idea/dataSources.ids
118+
.idea/dataSources.xml
119+
.idea/dataSources.local.xml
120+
.idea/sqlDataSources.xml
121+
.idea/dynamic.xml
122+
.idea/uiDesigner.xml
123+
124+
# Gradle:
125+
.idea/gradle.xml
126+
.idea/libraries
127+
128+
# Mongo Explorer plugin:
129+
.idea/mongoSettings.xml
130+
60131
.idea/
132+
133+
## File-based project format:
134+
*.iws
135+
136+
## Plugin-specific files:
137+
138+
# IntelliJ
139+
/out/
140+
141+
# mpeltonen/sbt-idea plugin
142+
.idea_modules/
143+
144+
# JIRA plugin
145+
atlassian-ide-plugin.xml
146+
147+
# Crashlytics plugin (for Android Studio and IntelliJ)
148+
com_crashlytics_export_strings.xml
149+
crashlytics.properties
150+
crashlytics-build.properties
151+
fabric.properties

0 commit comments

Comments
 (0)