Skip to content

Commit fa86438

Browse files
committed
chore: update .gitignore
1 parent 42ec46c commit fa86438

File tree

1 file changed

+76
-28
lines changed

1 file changed

+76
-28
lines changed

.gitignore

Lines changed: 76 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,81 @@
1-
.idea/
1+
# OS
22
.DS_Store
3-
.history/
4-
.nyc_output/
3+
4+
# IDE
5+
.idea
6+
.settings
7+
.cache/
8+
.tmp
59
.vscode/
6-
*.lock
7-
*.sum
8-
*.log
9-
vendor/
10-
*.iml
10+
11+
# Byte-compiled / optimized / DLL files
12+
__pycache__/
13+
*.py[cod]
14+
*$py.class
15+
16+
# C extensions
17+
*.so
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+
pip-wheel-metadata/
34+
share/python-wheels/
35+
*.egg-info/
36+
.installed.cfg
37+
*.egg
38+
MANIFEST
39+
40+
# Installer logs
41+
pip-log.txt
42+
pip-delete-this-directory.txt
43+
44+
# Unit test / coverage reports
45+
htmlcov/
46+
.tox/
47+
.nox/
48+
.coverage
49+
.coverage.*
50+
.cache
51+
nosetests.xml
52+
coverage.xml
53+
*.cover
54+
*.coverage
55+
.hypothesis/
56+
.pytest_cache/
57+
pytestdebug.log
58+
59+
# Sphinx documentation
60+
docs/_build/
61+
62+
# PyBuilder
1163
target/
12-
.settings/
13-
.classpath
14-
.project
15-
.history/
16-
coverage.html
17-
coverage.out
18-
node_modules/
19-
libraries/
20-
**/.libraries.json
21-
*.sh
22-
**/bin/
23-
**/obj/
24-
**/csharp/**/.vs/
25-
**/dist/
26-
*.tgz
27-
test*
28-
.php_cs.cache
64+
65+
# pyenv
66+
.python-version
67+
68+
# Environments
2969
.env
70+
.venv
71+
env/
72+
venv/
73+
ENV/
74+
env.bak/
75+
venv.bak/
76+
77+
# Pyre type checker
78+
.pyre/
3079

31-
**/python/**/__pycache__
32-
*.nupkg
33-
package-lock.json
80+
# pytype static type analyzer
81+
.pytype/

0 commit comments

Comments
 (0)