|
6 | 6 | "source.organizeImports": true |
7 | 7 | }, |
8 | 8 | "python.languageServer": "Pylance", |
9 | | - "python.analysis.autoFormatStrings": true, |
10 | | - "python.analysis.autoImportCompletions": true, |
11 | | - "python.analysis.completeFunctionParens": false, |
12 | | - "python.analysis.enablePytestExtra": false, |
13 | | - "python.analysis.gotoDefinitionInStringLiteral": false, |
14 | | - "python.analysis.inlayHints.callArgumentNames": "off", |
15 | | - "python.analysis.inlayHints.functionReturnTypes": false, |
16 | | - "python.analysis.inlayHints.pytestParameters": true, |
17 | 9 | "[python]": { |
18 | 10 | "editor.formatOnSave": true, |
19 | 11 | "editor.defaultFormatter": "charliermarsh.ruff", |
|
25 | 17 | "ruff.lint.args": [ |
26 | 18 | "--select=ALL", |
27 | 19 | "--line-length=100", |
28 | | - "--ignore=D100" |
| 20 | + "--ignore=ANN,D" |
29 | 21 | ], |
30 | 22 | "ruff.organizeImports": true, |
31 | 23 | "vsintellicode.features.python.deepLearning": "enabled", |
32 | 24 | "sonarlint.disableTelemetry": true, |
33 | | - "mypy-type-checker.reportingScope": "workspace", |
34 | | - "mypy-type-checker.preferDaemon": true |
| 25 | + "python.terminal.activateEnvInCurrentTerminal": true, |
| 26 | + "python.testing.pytestEnabled": true, |
| 27 | + "rewrap.wrappingColumn": 80, |
| 28 | + "git.autofetch": true, |
| 29 | + "diffEditor.renderSideBySide": true, |
| 30 | + "diffEditor.ignoreTrimWhitespace": true, |
| 31 | + "gitlens.currentLine.enabled": false, |
| 32 | + "gitlens.hovers.enabled": false, |
| 33 | + "gitlens.hovers.currentLine.over": "line", |
| 34 | + "gitlens.codeLens.enabled": false, |
| 35 | + "gitlens.defaultDateStyle": "absolute", |
| 36 | + "cSpell.enabled": false, |
| 37 | + "cSpell.language": "de,de-DE,en", |
| 38 | + "files.trimTrailingWhitespace": true, |
| 39 | + "files.insertFinalNewline": true, |
| 40 | + "vsintellicode.sql.completionsEnabled": false, |
| 41 | + "githubIssues.issueBranchTitle": "feature/${issueNumber}_${sanitizedIssueTitle}", |
| 42 | + "python.analysis.typeCheckingMode": "basic", |
| 43 | + "python.analysis.autoFormatStrings": true, |
| 44 | + "python.analysis.autoImportCompletions": true, |
| 45 | + "python.analysis.inlayHints.pytestParameters": true, |
| 46 | + "python.analysis.completeFunctionParens": true |
35 | 47 | } |
0 commit comments