1
0
This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
ledger-sqlite/.vscode/settings.json

18 lines
550 B
JSON

{
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.mypyEnabled": true,
"python.linting.mypyCategorySeverity.error":"Warning",
"python.linting.mypyArgs": [
"--follow-imports=silent",
"--show-column-numbers",
"--disallow-untyped-defs",
"--disallow-incomplete-defs",
"--disallow-untyped-calls",
"--warn-redundant-casts",
"--warn-return-any",
"--strict",
"--strict-equality"
]
}