mirror of
https://github.com/Casvt/MIND.git
synced 2026-02-19 11:54:46 -05:00
57 lines
1.1 KiB
JSON
57 lines
1.1 KiB
JSON
{
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 4,
|
|
"editor.linkedEditing": true,
|
|
|
|
"[html]": {
|
|
"editor.rulers": [120],
|
|
},
|
|
"html.format.wrapLineLength": 120,
|
|
"html.format.wrapAttributes": "aligned-multiple",
|
|
"html.format.templating": true,
|
|
|
|
"[python]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "ms-python.autopep8",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "always",
|
|
}
|
|
},
|
|
"isort.check": true,
|
|
"isort.severity": {
|
|
"W": "Warning",
|
|
"E": "Warning"
|
|
},
|
|
"isort.args": [
|
|
"--jobs", "-1"
|
|
],
|
|
|
|
"python.testing.unittestEnabled": true,
|
|
"python.testing.unittestArgs": [
|
|
"-s", "./tests",
|
|
"-p", "*.py"
|
|
],
|
|
|
|
"python.analysis.typeCheckingMode": "standard",
|
|
"python.analysis.diagnosticMode": "workspace",
|
|
|
|
"mypy-type-checker.reportingScope": "workspace",
|
|
"mypy-type-checker.preferDaemon": false,
|
|
"mypy-type-checker.args": [
|
|
"--explicit-package-bases"
|
|
],
|
|
|
|
"cSpell.words": [
|
|
"behaviour",
|
|
"customisable",
|
|
"customised",
|
|
"noqa",
|
|
"traceback"
|
|
],
|
|
"cSpell.languageSettings": [
|
|
{
|
|
"languageId": "log",
|
|
"enabled": false
|
|
}
|
|
]
|
|
} |