blob: 484fedb5ce631a42b8180c119c1a32497f85fa2f [file] [log] [blame]
Rohan Patelf49bd1e2019-09-23 15:04:19 -04001# Application-specific stuff
2files/
3temp/
4opt/cert/*.pem
5*.log
6
7envScript.sh
8
9# Created by https://www.gitignore.io/api/python,pycharm
10# Edit at https://www.gitignore.io/?templates=python,pycharm
11
12### PyCharm ###
13# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
14# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
15
16# User-specific stuff
17.idea/**/workspace.xml
18.idea/**/tasks.xml
19.idea/**/usage.statistics.xml
20.idea/**/dictionaries
21.idea/**/shelf
22
23# Generated files
24.idea/**/contentModel.xml
25
26# Sensitive or high-churn files
27.idea/**/dataSources/
28.idea/**/dataSources.ids
29.idea/**/dataSources.local.xml
30.idea/**/sqlDataSources.xml
31.idea/**/dynamic.xml
32.idea/**/uiDesigner.xml
33.idea/**/dbnavigator.xml
34
35# Gradle
36.idea/**/gradle.xml
37.idea/**/libraries
38
39# Gradle and Maven with auto-import
40# When using Gradle or Maven with auto-import, you should exclude module files,
41# since they will be recreated, and may cause churn. Uncomment if using
42# auto-import.
43# .idea/modules.xml
44# .idea/*.iml
45# .idea/modules
46
47# CMake
48cmake-build-*/
49
50# Mongo Explorer plugin
51.idea/**/mongoSettings.xml
52
53# File-based project format
54*.iws
55
Rohan Patele19624e2019-11-11 16:30:46 -050056# Copyright (c) 2019 AT&T Intellectual Property. #
57# #
58# Licensed under the Apache License, Version 2.0 (the "License"); #
59# you may not use this file except in compliance with the License. #
60# You may obtain a copy of the License at #
61# #
62# http://www.apache.org/licenses/LICENSE-2.0 #
63# #
64# Unless required by applicable law or agreed to in writing, software #
65# distributed under the License is distributed on an "AS IS" BASIS, #
66# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
67# See the License for the specific language governing permissions and #
68# limitations under the License. #
69################################################################################
70
Rohan Patelf49bd1e2019-09-23 15:04:19 -040071# IntelliJ
72out/
73
74# mpeltonen/sbt-idea plugin
75.idea_modules/
76
77# JIRA plugin
78atlassian-ide-plugin.xml
79
80# Cursive Clojure plugin
81.idea/replstate.xml
82
83# Crashlytics plugin (for Android Studio and IntelliJ)
84com_crashlytics_export_strings.xml
85crashlytics.properties
86crashlytics-build.properties
87fabric.properties
88
89# Editor-based Rest Client
90.idea/httpRequests
91
92# Android studio 3.1+ serialized cache file
93.idea/caches/build_file_checksums.ser
94
95### PyCharm Patch ###
96# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
97
98# *.iml
99# modules.xml
100# .idea/misc.xml
101# *.ipr
102
103# Sonarlint plugin
104.idea/sonarlint
105
106### Python ###
107# Byte-compiled / optimized / DLL files
108__pycache__/
109*.py[cod]
110*$py.class
111
112# C extensions
113*.so
114
115# Distribution / packaging
116.Python
117build/
118develop-eggs/
119dist/
120downloads/
121eggs/
122.eggs/
123lib/
124lib64/
125parts/
126sdist/
127var/
128wheels/
129share/python-wheels/
130*.egg-info/
131.installed.cfg
132*.egg
133MANIFEST
134
135# PyInstaller
136# Usually these files are written by a python script from a template
137# before PyInstaller builds the exe, so as to inject date/other infos into it.
138*.manifest
139*.spec
140
141# Installer logs
142pip-log.txt
143pip-delete-this-directory.txt
144
145# Unit test / coverage reports
146htmlcov/
147.tox/
148.nox/
149.coverage
150.coverage.*
151.cache
152nosetests.xml
153coverage.xml
154*.cover
155.hypothesis/
156.pytest_cache/
157
158# Translations
159*.mo
160*.pot
161
162# Django stuff:
163*.log
164local_settings.py
165db.sqlite3
166
167# Flask stuff:
168instance/
169.webassets-cache
170
171# Scrapy stuff:
172.scrapy
173
174# Sphinx documentation
175docs/_build/
176
177# PyBuilder
178target/
179
180# Jupyter Notebook
181.ipynb_checkpoints
182
183# IPython
184profile_default/
185ipython_config.py
186
187# pyenv
188.python-version
189
190# celery beat schedule file
191celerybeat-schedule
192
193# SageMath parsed files
194*.sage.py
195
196# Environments
197.env
198.venv
199env/
200venv/
201ENV/
202env.bak/
203venv.bak/
204
205# Spyder project settings
206.spyderproject
207.spyproject
208
209# Rope project settings
210.ropeproject
211
212# mkdocs documentation
213/site
214
215# mypy
216.mypy_cache/
217.dmypy.json
218dmypy.json
219
220# Pyre type checker
221.pyre/
222
223### Python Patch ###
224.venv/
225
226# End of https://www.gitignore.io/api/python,pycharm