diff options
Diffstat (limited to '.vscode/settings.json')
-rw-r--r-- | .vscode/settings.json | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 8428c00..dd63eea 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,18 +3,27 @@ "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" + "--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, + }
\ No newline at end of file |