Skip to content

Commit 4fcd620

Browse files
authored
Merge pull request #52 from Debilski/gitignore
2 parents d453e14 + af1c602 commit 4fcd620

File tree

1 file changed

+46
-22
lines changed

1 file changed

+46
-22
lines changed

.gitignore

Lines changed: 46 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,57 @@
1-
# Byte-compiled / optimized / DLL files
1+
# We provide a set of user specific ignores here.
2+
# A pragmatic approach to preventing erroneous adding.
3+
4+
# python ignores
25
__pycache__/
36
*.py[cod]
4-
*$py.class
5-
67

7-
# Unit test / coverage reports
8-
htmlcov/
9-
.tox/
10-
.coverage
11-
.coverage.*
12-
.cache
13-
nosetests.xml
14-
coverage.xml
15-
*.cover
16-
.hypothesis/
8+
# pytest
179
.pytest_cache/
1810

19-
# Jupyter Notebook
11+
# ipython notebook
2012
.ipynb_checkpoints
2113

22-
# pyenv
23-
.python-version
14+
# coverage ignore
15+
.coverage
2416

25-
# Spyder project settings
26-
.spyderproject
17+
# editors
18+
.project
19+
.classpath
20+
.settings
21+
.metadata
22+
.pydevproject
23+
.cache
24+
.idea
25+
.vscode
2726
.spyproject
2827

29-
# other
30-
.*.swp
3128

32-
# macOS
33-
.DS_Store
29+
# other generic files to ignore
30+
*~
31+
*.lock
32+
*.DS_Store
33+
*.swp
34+
*.out
35+
36+
.cache
37+
38+
# Distribution / packaging
39+
.Python
40+
build/
41+
develop-eggs/
42+
dist/
43+
downloads/
44+
eggs/
45+
.eggs/
46+
lib/
47+
lib64/
48+
parts/
49+
sdist/
50+
var/
51+
wheels/
52+
*.egg-info/
53+
.installed.cfg
54+
*.egg
55+
56+
57+
pelita.log

0 commit comments

Comments
 (0)