-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
209 lines (164 loc) · 3.81 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# Created by .ignore support plugin (hsz.mobi)
### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
**/.idea/*
**/target/*
### PyCharm ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
Setup/.idea/**/workspace.xml
Setup/.idea/**/tasks.xml
Setup/.idea/**/usage.statistics.xml
Setup/.idea/**/dictionaries
Setup/.idea/**/shelf
# Generated files
Setup/.idea/**/contentModel.xml
# Sensitive or high-churn files
Setup/.idea/**/dataSources/
Setup/.idea/**/dataSources.ids
Setup/.idea/**/dataSources.local.xml
Setup/.idea/**/sqlDataSources.xml
Setup/.idea/**/dynamic.xml
Setup/.idea/**/uiDesigner.xml
Setup/.idea/**/dbnavigator.xml
# Gradle
Setup/.idea/**/gradle.xml
Setup/.idea/**/libraries
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# CMake
Setup/cmake-build-*/
# Mongo Explorer plugin
Setup/.idea/**/mongoSettings.xml
# File-based project format
Setup/*.iws
# IntelliJ
Setup/out/
# mpeltonen/sbt-idea plugin
Setup/.idea_modules/
# JIRA plugin
Setup/atlassian-ide-plugin.xml
# Cursive Clojure plugin
Setup/.idea/replstate.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
Setup/com_crashlytics_export_strings.xml
Setup/crashlytics.properties
Setup/crashlytics-build.properties
Setup/fabric.properties
# Editor-based Rest Client
Setup/.idea/httpRequests
# Android studio 3.1+ serialized cache file
Setup/.idea/caches/build_file_checksums.ser
### PyCharm Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr
# Sonarlint plugin
Setup/.idea/sonarlint
### Python ###
# Byte-compiled / optimized / DLL files
Setup/__pycache__/
Setup/*.py[cod]
Setup/*$py.class
# C extensions
Setup/*.so
# Distribution / packaging
Setup/.Python
Setup/build/
Setup/develop-eggs/
Setup/dist/
Setup/downloads/
Setup/eggs/
Setup/.eggs/
Setup/lib/
Setup/lib64/
Setup/parts/
Setup/sdist/
Setup/var/
Setup/wheels/
Setup/share/python-wheels/
Setup/*.egg-info/
Setup/.installed.cfg
Setup/*.egg
Setup/MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
Setup/*.manifest
Setup/*.spec
# Installer logs
Setup/pip-log.txt
Setup/pip-delete-this-directory.txt
# Unit test / coverage reports
Setup/htmlcov/
Setup/.tox/
Setup/.nox/
Setup/.coverage
Setup/.coverage.*
Setup/.cache
Setup/nosetests.xml
Setup/coverage.xml
Setup/*.cover
Setup/.hypothesis/
Setup/.pytest_cache/
# Translations
Setup/*.mo
Setup/*.pot
# Django stuff:
Setup/*.log
Setup/local_settings.py
Setup/db.sqlite3
# Flask stuff:
Setup/instance/
Setup/.webassets-cache
# Scrapy stuff:
Setup/.scrapy
# Sphinx documentation
Setup/docs/_build/
# PyBuilder
Setup/target/
# Jupyter Notebook
Setup/.ipynb_checkpoints
# IPython
Setup/profile_default/
Setup/ipython_config.py
# pyenv
Setup/.python-version
# celery beat schedule file
Setup/celerybeat-schedule
# SageMath parsed files
Setup/*.sage.py
# Environments
Setup/.env
Setup/.venv
Setup/env/
Setup/venv/
Setup/ENV/
Setup/env.bak/
Setup/venv.bak/
# Spyder project settings
Setup/.spyderproject
Setup/.spyproject
# Rope project settings
Setup/.ropeproject
# mkdocs documentation
Setup//site
# mypy
Setup/.mypy_cache/
Setup/.dmypy.json
Setup/dmypy.json
# Pyre type checker
Setup/.pyre/
### Python Patch ###
Setup/.venv/
# ppk
*.ppk