Skip to content
This repository was archived by the owner on Apr 20, 2026. It is now read-only.
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,6 @@
"中文",
"日本語"
],
"flake8.args": [
"--max-line-length=130",
],
"git.ignoreLimitWarning": true,
"python.analysis.typeCheckingMode": "basic",
Comment thread
seanbudd marked this conversation as resolved.
Outdated
"python.analysis.diagnosticMode": "workspace",
Expand All @@ -245,8 +242,18 @@
"python.analysis.diagnosticSeverityOverrides": {
"reportMissingImports": "none"
},
"triggerTaskOnSave.tasks": {
"flake8-whole-project": ["**/*.*py"]
},
"cmake.configureOnOpen": false
}
"python.languageServer": "Pylance",
"python.analysis.useLibraryCodeForTypes": true,

"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
Comment thread
seanbudd marked this conversation as resolved.

"python.linting.enabled": true,
"python.linting.ruffEnabled": true,
"python.linting.ruffPath": "ruff",

"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": false,
"python.linting.mypyEnabled": false,

"cmake.configureOnOpen": false,
}