24 lines
583 B
JSON
24 lines
583 B
JSON
{
|
|
"python.testing.pytestArgs": [
|
|
"tests"
|
|
],
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"editor.formatOnSave": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "always",
|
|
"source.fixAll.ruff": "explicit"
|
|
}
|
|
},
|
|
"ruff.importStrategy": "fromEnvironment",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimFinalNewlines": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"editor.rulers": [
|
|
88
|
|
]
|
|
}
|