Skip to content

Commit fd6273d

Browse files
Add gitignore
1 parent 3cfb487 commit fd6273d

File tree

1 file changed

+189
-0
lines changed

1 file changed

+189
-0
lines changed

.gitignore

Lines changed: 189 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,189 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Python template
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
8+
# C extensions
9+
*.so
10+
11+
# osx folder options
12+
*.DS_Store
13+
14+
# Distribution / packaging
15+
.Python
16+
env/
17+
build/
18+
develop-eggs/
19+
dist/
20+
downloads/
21+
eggs/
22+
.eggs/
23+
lib/
24+
lib64/
25+
parts/
26+
sdist/
27+
var/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
32+
# PyInstaller
33+
# Usually these files are written by a python script from a template
34+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
35+
*.manifest
36+
*.spec
37+
38+
# Installer logs
39+
pip-log.txt
40+
pip-delete-this-directory.txt
41+
42+
# Unit test / coverage reports
43+
htmlcov/
44+
.tox/
45+
.coverage
46+
.coverage.*
47+
.cache
48+
nosetests.xml
49+
coverage.xml
50+
*,cover
51+
.hypothesis/
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
local_settings.py
60+
61+
# Flask stuff:
62+
instance/
63+
.webassets-cache
64+
65+
# Scrapy stuff:
66+
.scrapy
67+
68+
# Sphinx documentation
69+
docs/_build/
70+
71+
# PyBuilder
72+
target/
73+
74+
# IPython Notebook
75+
.ipynb_checkpoints
76+
77+
# pyenv
78+
.python-version
79+
80+
# celery beat schedule file
81+
celerybeat-schedule
82+
83+
# dotenv
84+
.env
85+
86+
# virtualenv
87+
venv/
88+
ENV/
89+
90+
# Spyder project settings
91+
.spyderproject
92+
93+
# Rope project settings
94+
.ropeproject
95+
### VirtualEnv template
96+
# Virtualenv
97+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
98+
[Bb]in
99+
[Ii]nclude
100+
[Ll]ib
101+
[Ll]ib64
102+
[Ll]ocal
103+
[Ss]cripts
104+
pyvenv.cfg
105+
.venv
106+
pip-selfcheck.json
107+
108+
### JetBrains template
109+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
110+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
111+
112+
# User-specific stuff
113+
.idea/**/workspace.xml
114+
.idea/**/tasks.xml
115+
.idea/**/usage.statistics.xml
116+
.idea/**/dictionaries
117+
.idea/**/shelf
118+
.idea
119+
120+
# AWS User-specific
121+
.idea/**/aws.xml
122+
123+
# Generated files
124+
.idea/**/contentModel.xml
125+
126+
# Sensitive or high-churn files
127+
.idea/**/dataSources/
128+
.idea/**/dataSources.ids
129+
.idea/**/dataSources.local.xml
130+
.idea/**/sqlDataSources.xml
131+
.idea/**/dynamic.xml
132+
.idea/**/uiDesigner.xml
133+
.idea/**/dbnavigator.xml
134+
135+
# Gradle
136+
.idea/**/gradle.xml
137+
.idea/**/libraries
138+
139+
# Gradle and Maven with auto-import
140+
# When using Gradle or Maven with auto-import, you should exclude module files,
141+
# since they will be recreated, and may cause churn. Uncomment if using
142+
# auto-import.
143+
# .idea/artifacts
144+
# .idea/compiler.xml
145+
# .idea/jarRepositories.xml
146+
# .idea/modules.xml
147+
# .idea/*.iml
148+
# .idea/modules
149+
# *.iml
150+
# *.ipr
151+
152+
# CMake
153+
cmake-build-*/
154+
155+
# Mongo Explorer plugin
156+
.idea/**/mongoSettings.xml
157+
158+
# File-based project format
159+
*.iws
160+
161+
# IntelliJ
162+
out/
163+
164+
# mpeltonen/sbt-idea plugin
165+
.idea_modules/
166+
167+
# JIRA plugin
168+
atlassian-ide-plugin.xml
169+
170+
# Cursive Clojure plugin
171+
.idea/replstate.xml
172+
173+
# SonarLint plugin
174+
.idea/sonarlint/
175+
176+
# Crashlytics plugin (for Android Studio and IntelliJ)
177+
com_crashlytics_export_strings.xml
178+
crashlytics.properties
179+
crashlytics-build.properties
180+
fabric.properties
181+
182+
# Editor-based Rest Client
183+
.idea/httpRequests
184+
185+
# Android studio 3.1+ serialized cache file
186+
.idea/caches/build_file_checksums.ser
187+
188+
# idea folder, uncomment if you don't need it
189+
# .idea

0 commit comments

Comments
 (0)