aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore112
1 files changed, 112 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c0fa452
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,112 @@
1# Created by .ignore support plugin (hsz.mobi)
2
3### Python template
4# Byte-compiled / optimized / DLL files
5__pycache__/
6*.py[cod]
7*$py.class
8
9# C extensions
10*.so
11
12# Distribution / packaging
13.Python
14env/
15build/
16develop-eggs/
17dist/
18downloads/
19eggs/
20.eggs/
21lib/
22lib64/
23parts/
24sdist/
25var/
26*.egg-info/
27.installed.cfg
28*.egg
29
30# PyInstaller
31# Usually these files are written by a python script from a template
32# before PyInstaller builds the exe, so as to inject date/other infos into it.
33*.manifest
34*.spec
35
36# Installer logs
37pip-log.txt
38pip-delete-this-directory.txt
39
40# Unit test / coverage reports
41htmlcov/
42.tox/
43.coverage
44.coverage.*
45.cache
46nosetests.xml
47coverage.xml
48*,cover
49
50# Translations
51*.mo
52*.pot
53
54# Django stuff:
55*.log
56
57# Sphinx documentation
58docs/_build/
59
60# PyBuilder
61target/
62
63
64### JetBrains template
65# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion
66
67*.iml
68
69## Directory-based project format:
70.idea/
71# if you remove the above rule, at least ignore the following:
72
73# User-specific stuff:
74# .idea/workspace.xml
75# .idea/tasks.xml
76# .idea/dictionaries
77
78# Sensitive or high-churn files:
79# .idea/dataSources.ids
80# .idea/dataSources.xml
81# .idea/sqlDataSources.xml
82# .idea/dynamic.xml
83# .idea/uiDesigner.xml
84
85# Gradle:
86# .idea/gradle.xml
87# .idea/libraries
88
89# Mongo Explorer plugin:
90# .idea/mongoSettings.xml
91
92## File-based project format:
93*.ipr
94*.iws
95
96## Plugin-specific files:
97
98# IntelliJ
99/out/
100
101# mpeltonen/sbt-idea plugin
102.idea_modules/
103
104# JIRA plugin
105atlassian-ide-plugin.xml
106
107# Crashlytics plugin (for Android Studio and IntelliJ)
108com_crashlytics_export_strings.xml
109crashlytics.properties
110crashlytics-build.properties
111
112