First (way too late) commit
Dumping my fever dream coding session into source control finally.
This commit is contained in:
34
.vscode/settings.json
vendored
Normal file
34
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
|
||||
"python.analysis.autoImportCompletions": true,
|
||||
|
||||
// RUFF: The authority on formatting and linting
|
||||
"[python]": {
|
||||
"editor.defaultFormatter": "charliermarsh.ruff",
|
||||
"editor.formatOnSave": true,
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll": "explicit",
|
||||
"source.organizeImports": "explicit"
|
||||
},
|
||||
},
|
||||
"mypy-type-checker.args": ["--config-file=${workspaceFolder}/pyproject.toml"],
|
||||
"mypy-type-checker.importStrategy": "fromEnvironment",
|
||||
|
||||
"python.testing.pytestArgs": [
|
||||
"tests"
|
||||
],
|
||||
"python.testing.unittestEnabled": false,
|
||||
"python.testing.pytestEnabled": true,
|
||||
"ruff.lsp.workspaceFolder": "${workspaceFolder}",
|
||||
"ruff.configurationPreference": "filesystemFirst",
|
||||
"ruff.configuration": "pyproject.toml",
|
||||
|
||||
// CLEANUP: Hide cache files from the file explorer
|
||||
"files.exclude": {
|
||||
"**/__pycache__": true,
|
||||
"**/.pytest_cache": true,
|
||||
"**/.mypy_cache": true,
|
||||
"**/.ruff_cache": true,
|
||||
".venv": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user