-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
4f401ea
commit 13efa09
Showing
30 changed files
with
109 additions
and
2,657 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
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,50 +1,82 @@ | ||
# Rust | ||
/target/ | ||
Cargo.lock | ||
|
||
# Wiki | ||
_build/ | ||
_modules/ | ||
|
||
# Database | ||
*.sqlite3 | ||
*.db | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
.pytest_cache/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
.venv/ | ||
env/ | ||
bin/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
include/ | ||
man/ | ||
venv/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
pip-selfcheck.json | ||
|
||
# Wiki | ||
_build/ | ||
_modules/ | ||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
|
||
# IFC | ||
*.ifc | ||
# Translations | ||
*.mo | ||
|
||
# Database | ||
*.sqlite3 | ||
*.db | ||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
|
||
# Rope | ||
.ropeproject | ||
|
||
# Django stuff: | ||
*.log | ||
*.pot | ||
|
||
.DS_Store | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyCharm | ||
.idea/ | ||
|
||
# VSCode | ||
.vscode/ | ||
|
||
# libraries | ||
arx/ | ||
brx/ | ||
tx/ | ||
# Pyenv | ||
.python-version |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,81 +1,34 @@ | ||
{ | ||
// General Settings | ||
"extensions.ignoreRecommendations": true, | ||
"workbench.colorTheme": "Monokai Dimmed", | ||
"workbench.iconTheme": "material-icon-theme", | ||
"workbench.startupEditor": "none", | ||
"svg.preview.background": "dark-transparent", | ||
"scm.experimental.showHistoryGraph": true, | ||
|
||
// Explorer Settings | ||
"explorer.confirmDelete": false, | ||
"explorer.confirmDragAndDrop": false, | ||
|
||
// Editor Settings | ||
"[rust]": { | ||
"editor.defaultFormatter": "rust-lang.rust-analyzer" | ||
}, | ||
"[toml]": { | ||
"editor.defaultFormatter": "tamasfe.even-better-toml" | ||
}, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true, | ||
"[python]": { | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "explicit", | ||
"source.fixAll": "explicit" | ||
}, | ||
"editor.defaultFormatter": "charliermarsh.ruff" | ||
}, | ||
"[toml]": { "editor.defaultFormatter": "tamasfe.even-better-toml" }, | ||
"[c]": { "editor.defaultFormatter": "ms-vscode.cpptools" }, | ||
"[cpp]": { "editor.defaultFormatter": "ms-vscode.cpptools" }, | ||
|
||
// Code Runner Settings | ||
"code-runner.executorMap": { "python": "$pythonPath -u $fullFileName" }, | ||
"code-runner.runInTerminal": true, | ||
|
||
// Ruff Settings | ||
"ruff.nativeServer": true, | ||
|
||
// File Associations | ||
"files.associations": { "ostream": "cpp" }, | ||
|
||
// Git and GitHub Settings | ||
"explorer.confirmDelete": false, | ||
"explorer.confirmDragAndDrop": false, | ||
"extensions.ignoreRecommendations": true, | ||
"git.autofetch": true, | ||
"git.enableSmartCommit": true, | ||
"github.copilot.enable": { "*": true }, | ||
|
||
// JSON Schema Settings | ||
"github.copilot.enable": { | ||
"*": true | ||
}, | ||
"json.schemas": [ | ||
{ | ||
"fileMatch": ["*.json", "*.jsonc"], | ||
"url": "https://json.schemastore.org/package" | ||
} | ||
], | ||
|
||
// Material Icon Theme Settings | ||
"material-icon-theme.files.color": "#ef5350", | ||
"material-icon-theme.folders.color": "#ef5350", | ||
"material-icon-theme.folders.associations": { | ||
"xcad": "src", | ||
"arx": "lib", | ||
"brx": "lib", | ||
"tx": "lib" | ||
"xcad": "src" | ||
}, | ||
|
||
// Python Settings | ||
"python.analysis.autoImportCompletions": true, | ||
"python.analysis.autoSearchPaths": true, | ||
"python.analysis.completeFunctionParens": true, | ||
"python.analysis.diagnosticMode": "workspace", | ||
"python.analysis.diagnosticSeverityOverrides": { | ||
"reportWildcardImportFromLibrary": "none" | ||
}, | ||
"python.analysis.ignore": ["*"], | ||
"python.analysis.importFormat": "absolute", | ||
"python.analysis.inlayHints.pytestParameters": true, | ||
"python.analysis.typeCheckingMode": "strict", | ||
"python.createEnvironment.trigger": "off", | ||
"python.languageServer": "Pylance", | ||
"python.testing.pytestEnabled": false, | ||
"python.testing.unittestEnabled": true, | ||
"python.testing.unittestArgs": ["-v", "-s", "./", "-p", "test_*.py"], | ||
|
||
// Terminal Settings | ||
"terminal.integrated.enableMultiLinePasteWarning": "never" | ||
"material-icon-theme.folders.color": "#ef5350", | ||
"rust-analyzer.linkedProjects": ["Cargo.toml"], | ||
"terminal.integrated.enableMultiLinePasteWarning": "never", | ||
"workbench.colorTheme": "Monokai Dimmed", | ||
"workbench.iconTheme": "material-icon-theme", | ||
"workbench.startupEditor": "none" | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[workspace] | ||
members = ["xcad"] | ||
resolver = "2" |
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
Oops, something went wrong.