Skip to content

Commit cc4761c

Browse files
committed
Clean up gitignore
1 parent 28ef278 commit cc4761c

File tree

1 file changed

+27
-11
lines changed

1 file changed

+27
-11
lines changed

.gitignore

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,27 @@
1-
__pycache__
2-
/.idea
3-
/.tox
4-
/env
5-
/build
6-
/demosys_py.egg-info
7-
/dist
8-
.DS_Store
9-
/manage.py
10-
/testdemo
11-
/docs/build
1+
__pycache__
2+
3+
# Build and test directories
4+
/.tox
5+
/build
6+
/demosys_py.egg-info
7+
/dist
8+
/docs/build
9+
10+
# Libraries
11+
*.a
12+
*.DLL
13+
14+
# virtual envs
15+
/env/
16+
/.env/
17+
/.venv/
18+
19+
# Local dev project
20+
/manage.py
21+
/testdemo
22+
23+
# IDE files
24+
/.idea
25+
26+
# Misc
27+
.DS_Store

0 commit comments

Comments
 (0)