summaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
blob: 8428c00f728799d24ffdd860d09843cfb2b9a28f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "ruff.enable": true,
  "python.testing.unittestEnabled": false,
  "python.testing.pytestEnabled": true,
  "pylint.importStrategy": "fromEnvironment",
  "mypy-type-checker.importStrategy": "fromEnvironment",
  "mypy-type-checker.args": [
    "--config-file=pyproject.toml"
  ],
  "pylint.severity": {
    "refactor": "Warning"
  },
  "pylint.args": [
    "--load-plugins", "pylint_pydantic",
    "--rcfile=pylintrc"
  ],
  "python.testing.pytestArgs": [
    "tests"
  ],
}