-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
261 changed files
with
14,377 additions
and
4,243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
* text=auto eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,45 @@ | ||
# Ignore common unwanted files globally | ||
**/.DS_Store | ||
**/.env | ||
**/__pycache__/ | ||
**/.conda/ | ||
|
||
# Ignore git (for bundler) | ||
# Ignore git internal files (for bundler) | ||
.git/ | ||
|
||
# Ignore all contents of the virtual environment directory | ||
.venv/ | ||
|
||
# ignore all folders under /bundle | ||
# Handle bundle directory | ||
bundle/*/ | ||
# except some | ||
!bundle/mac_pkg_scripts | ||
|
||
# Ignore all contents of the directory "work_dir" | ||
# Handle work_dir directory | ||
work_dir/* | ||
# But do not ignore the directory itself | ||
!work_dir/.gitkeep | ||
|
||
# Ignore all contents of the directory "memory" | ||
memory/* | ||
# But do not ignore the directory itself | ||
!memory/.gitkeep | ||
# Handle memory directory | ||
memory/** | ||
!memory/**/ | ||
|
||
# Ignore all contents of the directory "logs" | ||
# Handle logs directory | ||
logs/* | ||
# But do not ignore the directory itself | ||
!logs/.gitkeep | ||
|
||
# Ignore all contents of the directory "tmp" | ||
# Handle tmp directory | ||
tmp/* | ||
# But do not ignore the directory itself | ||
!tmp/.gitkeep | ||
|
||
# Ignore everything in the "knowledge" directory | ||
knowledge/* | ||
|
||
# Do not ignore subdirectories (so we can track .gitkeep) | ||
!knowledge/*/ | ||
|
||
# Ignore all files within subdirectories (except .gitkeep) | ||
knowledge/**/*.* | ||
!knowledge/**/.gitkeep | ||
|
||
# Explicitly allow the default folder and its contents | ||
# Handle knowledge directory | ||
knowledge/** | ||
!knowledge/**/ | ||
# Explicitly allow the default folder in knowledge | ||
!knowledge/default/ | ||
!knowledge/default/** | ||
|
||
# Ignore everything in the "instruments" directory | ||
instruments/* | ||
|
||
# Do not ignore subdirectories (so we can track .gitkeep) | ||
!instruments/*/ | ||
|
||
# Ignore all files within subdirectories (except .gitkeep) | ||
instruments/**/*.* | ||
!instruments/**/.gitkeep | ||
|
||
# Explicitly allow the default folder and its contents | ||
# Handle instruments directory | ||
instruments/** | ||
!instruments/**/ | ||
# Explicitly allow the default folder in instruments | ||
!instruments/default/ | ||
!instruments/default/** | ||
|
||
# Global rule to include .gitkeep files anywhere | ||
!**/.gitkeep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Debug run_ui.py", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "./run_ui.py", | ||
"console": "integratedTerminal", | ||
"args": ["-Xfrozen_modules=off"] | ||
}, | ||
{ | ||
"name": "Debug run_cli.py", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "./run_cli.py", | ||
"console": "integratedTerminal", | ||
"args": ["-Xfrozen_modules=off"] | ||
}, | ||
{ | ||
"name": "Debug current file", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${file}", | ||
"console": "integratedTerminal", | ||
"args": ["-Xfrozen_modules=off"] | ||
} | ||
] | ||
} | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Debug run_ui.py", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "./run_ui.py", | ||
"console": "integratedTerminal", | ||
"args": ["--development=true", "-Xfrozen_modules=off"] | ||
}, | ||
{ | ||
"name": "Debug run_cli.py", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "./run_cli.py", | ||
"console": "integratedTerminal", | ||
"args": ["--development=true", "-Xfrozen_modules=off"] | ||
}, | ||
{ | ||
"name": "Debug current file", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${file}", | ||
"console": "integratedTerminal", | ||
"args": ["--development=true", "-Xfrozen_modules=off"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
{ | ||
"python.analysis.typeCheckingMode": "standard", | ||
"windsurfPyright.analysis.diagnosticMode": "workspace", | ||
"windsurfPyright.analysis.typeCheckingMode": "standard", | ||
} |
Oops, something went wrong.