Spaces:
Sleeping
Sleeping
kathiasi commited on
Commit ·
a53d7fb
1
Parent(s): f8c6371
Add .gitignore to ignore lock files and common artifacts
Browse files- .gitignore +16 -0
.gitignore
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## IDE / editor
|
| 2 |
+
.vscode/
|
| 3 |
+
|
| 4 |
+
# Python
|
| 5 |
+
__pycache__/
|
| 6 |
+
.venv/
|
| 7 |
+
*.pyc
|
| 8 |
+
|
| 9 |
+
# macOS
|
| 10 |
+
.DS_Store
|
| 11 |
+
|
| 12 |
+
# LibreOffice / OpenOffice lock files created when editing, e.g. .~lock.*
|
| 13 |
+
.~lock.*
|
| 14 |
+
|
| 15 |
+
# Temporary or backup files
|
| 16 |
+
*~
|