Spaces:
Runtime error
Runtime error
Commit
·
5b9a0b4
1
Parent(s):
01f73be
Update .gitignore
Browse files- .gitignore +19 -0
.gitignore
CHANGED
|
@@ -7,6 +7,25 @@
|
|
| 7 |
.bloop/
|
| 8 |
project/**/metals.sbt
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
### Python ###
|
| 11 |
# Byte-compiled / optimized / DLL files
|
| 12 |
__pycache__/
|
|
|
|
| 7 |
.bloop/
|
| 8 |
project/**/metals.sbt
|
| 9 |
|
| 10 |
+
### VisualStudioCode ###
|
| 11 |
+
.vscode/*
|
| 12 |
+
!.vscode/settings.json
|
| 13 |
+
!.vscode/tasks.json
|
| 14 |
+
!.vscode/launch.json
|
| 15 |
+
!.vscode/extensions.json
|
| 16 |
+
!.vscode/*.code-snippets
|
| 17 |
+
|
| 18 |
+
# Local History for Visual Studio Code
|
| 19 |
+
.history/
|
| 20 |
+
|
| 21 |
+
# Built Visual Studio Code Extensions
|
| 22 |
+
*.vsix
|
| 23 |
+
|
| 24 |
+
### VisualStudioCode Patch ###
|
| 25 |
+
# Ignore all local history of files
|
| 26 |
+
.history
|
| 27 |
+
.ionide
|
| 28 |
+
|
| 29 |
### Python ###
|
| 30 |
# Byte-compiled / optimized / DLL files
|
| 31 |
__pycache__/
|