29 lines
764 B
JSON
29 lines
764 B
JSON
|
{
|
||
|
"[python]": {
|
||
|
"editor.codeActionsOnSave": {
|
||
|
"source.fixAll": "explicit",
|
||
|
"source.organizeImports": "explicit"
|
||
|
},
|
||
|
"editor.defaultFormatter": "charliermarsh.ruff"
|
||
|
},
|
||
|
"[properties]": {
|
||
|
"editor.formatOnSave": false,
|
||
|
"editor.formatOnType": false,
|
||
|
"editor.formatOnPaste": false
|
||
|
},
|
||
|
"editor.formatOnSave": true,
|
||
|
"files.exclude": {
|
||
|
"**/.git": true,
|
||
|
"**/__pycache__": true,
|
||
|
"**/.mypy_cache": true,
|
||
|
"**/.pytest_cache": true,
|
||
|
},
|
||
|
"files.associations": {
|
||
|
"*.local": "properties"
|
||
|
},
|
||
|
"python.testing.pytestArgs": [
|
||
|
"tests"
|
||
|
],
|
||
|
"python.testing.unittestEnabled": false,
|
||
|
"python.testing.pytestEnabled": true,
|
||
|
}
|