Skip to content

Commit 4cb7a21

Browse files
committed
Add .gitignore for AwesomeBuilder.
1 parent 3e666ef commit 4cb7a21

File tree

2 files changed

+140
-0
lines changed

2 files changed

+140
-0
lines changed

.gitignore

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
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+
# Distribution / packaging
12+
.Python
13+
env/
14+
build/
15+
develop-eggs/
16+
dist/
17+
downloads/
18+
eggs/
19+
.eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.coverage
43+
.coverage.*
44+
.cache
45+
nosetests.xml
46+
coverage.xml
47+
*,cover
48+
.hypothesis/
49+
50+
# Translations
51+
*.mo
52+
*.pot
53+
54+
# Django stuff:
55+
*.log
56+
local_settings.py
57+
58+
# Flask stuff:
59+
instance/
60+
.webassets-cache
61+
62+
# Scrapy stuff:
63+
.scrapy
64+
65+
# Sphinx documentation
66+
docs/_build/
67+
68+
# PyBuilder
69+
target/
70+
71+
# IPython Notebook
72+
.ipynb_checkpoints
73+
74+
# pyenv
75+
.python-version
76+
77+
# celery beat schedule file
78+
celerybeat-schedule
79+
80+
# dotenv
81+
.env
82+
83+
# virtualenv
84+
venv/
85+
ENV/
86+
87+
# Spyder project settings
88+
.spyderproject
89+
90+
# Rope project settings
91+
.ropeproject
92+
### JetBrains template
93+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
94+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
95+
96+
# User-specific stuff:
97+
.idea/workspace.xml
98+
.idea/tasks.xml
99+
.idea/dictionaries
100+
.idea/vcs.xml
101+
.idea/jsLibraryMappings.xml
102+
103+
# Sensitive or high-churn files:
104+
.idea/dataSources.ids
105+
.idea/dataSources.xml
106+
.idea/dataSources.local.xml
107+
.idea/sqlDataSources.xml
108+
.idea/dynamic.xml
109+
.idea/uiDesigner.xml
110+
111+
# Gradle:
112+
.idea/gradle.xml
113+
.idea/libraries
114+
115+
# Mongo Explorer plugin:
116+
.idea/mongoSettings.xml
117+
118+
## File-based project format:
119+
*.iws
120+
121+
## Plugin-specific files:
122+
123+
# IntelliJ
124+
/out/
125+
126+
# mpeltonen/sbt-idea plugin
127+
.idea_modules/
128+
129+
# JIRA plugin
130+
atlassian-ide-plugin.xml
131+
132+
# Crashlytics plugin (for Android Studio and IntelliJ)
133+
com_crashlytics_export_strings.xml
134+
crashlytics.properties
135+
crashlytics-build.properties
136+
fabric.properties
137+
138+
# Mac env
139+
.DS_Store/
140+
.python-version

images/.DS_Store

-6 KB
Binary file not shown.

0 commit comments

Comments
 (0)