summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore186
1 files changed, 186 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..470d88b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,186 @@
1# Created by .ignore support plugin (hsz.mobi)
2
3### C++ template
4# Compiled Object files
5*.slo
6*.lo
7*.o
8*.obj
9
10# Precompiled Headers
11*.gch
12*.pch
13
14# Compiled Dynamic libraries
15*.so
16*.dylib
17*.dll
18
19# Fortran module files
20*.mod
21
22# Compiled Static libraries
23*.lai
24*.la
25*.a
26*.lib
27
28# Executables
29*.exe
30*.out
31*.app
32
33
34### Vim template
35[._]*.s[a-w][a-z]
36[._]s[a-w][a-z]
37*.un~
38Session.vim
39.netrwhist
40*~
41
42
43### JetBrains template
44# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
45
46*.iml
47
48## Directory-based project format:
49.idea/
50# if you remove the above rule, at least ignore the following:
51
52# User-specific stuff:
53# .idea/workspace.xml
54# .idea/tasks.xml
55# .idea/dictionaries
56
57# Sensitive or high-churn files:
58# .idea/dataSources.ids
59# .idea/dataSources.xml
60# .idea/sqlDataSources.xml
61# .idea/dynamic.xml
62# .idea/uiDesigner.xml
63
64# Gradle:
65# .idea/gradle.xml
66# .idea/libraries
67
68# Mongo Explorer plugin:
69# .idea/mongoSettings.xml
70
71## File-based project format:
72*.ipr
73*.iws
74
75## Plugin-specific files:
76
77# IntelliJ
78/out/
79
80# mpeltonen/sbt-idea plugin
81.idea_modules/
82
83# JIRA plugin
84atlassian-ide-plugin.xml
85
86# Crashlytics plugin (for Android Studio and IntelliJ)
87com_crashlytics_export_strings.xml
88crashlytics.properties
89crashlytics-build.properties
90
91
92### Python template
93# Byte-compiled / optimized / DLL files
94__pycache__/
95*.py[cod]
96
97# C extensions
98*.so
99
100# Distribution / packaging
101.Python
102env/
103build/
104develop-eggs/
105dist/
106downloads/
107eggs/
108.eggs/
109lib/
110lib64/
111parts/
112sdist/
113var/
114*.egg-info/
115.installed.cfg
116*.egg
117
118# PyInstaller
119# Usually these files are written by a python script from a template
120# before PyInstaller builds the exe, so as to inject date/other infos into it.
121*.manifest
122*.spec
123
124# Installer logs
125pip-log.txt
126pip-delete-this-directory.txt
127
128# Unit test / coverage reports
129htmlcov/
130.tox/
131.coverage
132.coverage.*
133.cache
134nosetests.xml
135coverage.xml
136*,cover
137
138# Translations
139*.mo
140*.pot
141
142# Django stuff:
143*.log
144
145# Sphinx documentation
146docs/_build/
147
148# PyBuilder
149target/
150
151
152### C template
153# Object files
154*.o
155*.ko
156*.obj
157*.elf
158
159# Precompiled Headers
160*.gch
161*.pch
162
163# Libraries
164*.lib
165*.a
166*.la
167*.lo
168
169# Shared objects (inc. Windows DLLs)
170*.dll
171*.so
172*.so.*
173*.dylib
174
175# Executables
176*.exe
177*.out
178*.app
179*.i*86
180*.x86_64
181*.hex
182
183# Debug files
184*.dSYM/
185
186