Spaces:
Sleeping
Sleeping
Commit ·
85f7d76
1
Parent(s): 40f508b
update gitignore
Browse files- .gitignore +21 -24
.gitignore
CHANGED
|
@@ -1,24 +1,21 @@
|
|
| 1 |
-
# Pycharm files
|
| 2 |
-
.idea/
|
| 3 |
-
|
| 4 |
-
# poetry
|
| 5 |
-
poetry.lock
|
| 6 |
-
|
| 7 |
-
# Unit test files
|
| 8 |
-
.coverage
|
| 9 |
-
.coverage.*
|
| 10 |
-
.cache
|
| 11 |
-
.pytest_cache/
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
.
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
|
|
|
| 1 |
+
# Pycharm files
|
| 2 |
+
.idea/
|
| 3 |
+
|
| 4 |
+
# poetry
|
| 5 |
+
poetry.lock
|
| 6 |
+
|
| 7 |
+
# Unit test files
|
| 8 |
+
.coverage
|
| 9 |
+
.coverage.*
|
| 10 |
+
.cache
|
| 11 |
+
.pytest_cache/
|
| 12 |
+
src/*/__pycache__/*
|
| 13 |
+
|
| 14 |
+
# mypy files
|
| 15 |
+
.mypy_cache/
|
| 16 |
+
|
| 17 |
+
# Probable environments files
|
| 18 |
+
.env
|
| 19 |
+
.venv
|
| 20 |
+
env/
|
| 21 |
+
venv/
|
|
|
|
|
|
|
|
|