Skip to content

Commit 76d2d5b

Browse files
author
Anmol Gautam
committed
added gitignore
1 parent 54f2132 commit 76d2d5b

1 file changed

Lines changed: 121 additions & 0 deletions

File tree

.gitignore

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

0 commit comments

Comments
 (0)