Skip to content

Commit cac696a

Browse files
authored
Merge pull request #3 from C-Accel-CRIPT/create_gitignore
Create .gitignore
2 parents 2b72f30 + 5deed56 commit cac696a

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# jet brains IDE config directory
2+
.idea/
3+
4+
# vscode config directory
5+
.vscode/
6+
7+
# ignore virtual environments
8+
.env
9+
.venv
10+
env/
11+
venv/
12+
ENV/
13+
env.bak/
14+
venv.bak/
15+
16+
# pycache
17+
__pycache__/
18+
19+
# distribution / packaging
20+
.Python
21+
build/
22+
develop-eggs/
23+
dist/
24+
downloads/
25+
eggs/
26+
.eggs/
27+
lib/
28+
lib64/
29+
parts/
30+
sdist/
31+
var/
32+
wheels/
33+
share/python-wheels/
34+
*.egg-info/
35+
.installed.cfg
36+
*.egg

0 commit comments

Comments
 (0)