summaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
blob: dd63eea0dbea411e790cefd5d917881aa32c4def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  "ruff.enable": true,
  "python.testing.unittestEnabled": false,
  "python.testing.pytestEnabled": true,
  "pylint.importStrategy": "fromEnvironment",
  "pylint.severity": {
    "refactor": "Warning"
  },
  "pylint.args": [
    "--load-plugins",
    "pylint_pydantic",
    "--rcfile=pyproject.toml"
  ],
  "python.testing.pytestArgs": [
    "tests"
  ],
  "autoDocstring.docstringFormat": "numpy",
  "autoDocstring.includeName": false,
  "autoDocstring.includeExtendedSummary": true,
  "autoDocstring.startOnNewLine": true,
  "autoDocstring.guessTypes": true,
  "python.languageServer": "Pylance",
  "githubIssues.issueBranchTitle": "issues/${issueNumber}-${issueTitle}",
  "editor.formatOnPaste": true,
  "files.trimTrailingWhitespace": true,
  "mypy.configFile": "pyproject.toml",
  "workbench.remoteIndicator.showExtensionRecommendations": true,

}