-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update instance repo from cookiecutter template
- Loading branch information
1 parent
cfe13fc
commit 42435c9
Showing
5 changed files
with
72 additions
and
5 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 |
---|---|---|
|
@@ -18,7 +18,3 @@ __pycache__/ | |
# docs | ||
/docs/generated/ | ||
/docs/_build/ | ||
|
||
# IDEs | ||
/.idea/ | ||
/.vscode/ |
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,18 @@ | ||
{ | ||
"recommendations": [ | ||
// GitHub integration | ||
"github.vscode-github-actions", | ||
"github.vscode-pull-request-github", | ||
// Language support | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"ms-toolsai.jupyter", | ||
"tamasfe.even-better-toml", | ||
// Dependency management | ||
"ninoseki.vscode-mogami", | ||
// Linting and formatting | ||
"editorconfig.editorconfig", | ||
"charliermarsh.ruff", | ||
"esbenp.prettier-vscode", | ||
], | ||
} |
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,33 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: Build Documentation", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"module": "sphinx", | ||
"args": ["-M", "html", ".", "_build"], | ||
"cwd": "${workspaceFolder}/docs", | ||
"console": "internalConsole", | ||
"justMyCode": false, | ||
}, | ||
{ | ||
"name": "Python: Debug Test", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${file}", | ||
"purpose": ["debug-test"], | ||
"console": "internalConsole", | ||
"justMyCode": false, | ||
"env": { | ||
"PYTEST_ADDOPTS": "--color=yes", | ||
}, | ||
"presentation": { | ||
"hidden": true, | ||
} | ||
}, | ||
] | ||
} |
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,20 @@ | ||
{ | ||
"[python][jsonc][yaml]": { | ||
"editor.formatOnSave": true, | ||
}, | ||
"[python]": { | ||
"editor.defaultFormatter": "charliermarsh.ruff", | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": "always", | ||
"source.organizeImports": "always", | ||
}, | ||
}, | ||
"[jsonc][yaml]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
}, | ||
"python.analysis.typeCheckingMode": "basic", | ||
"python.testing.pytestEnabled": true, | ||
"python.testing.pytestArgs": ["-vv", "--color=yes"], | ||
} | ||
|
||
|