Skip to content

Commit

Permalink
[PROJECT] Updated .vscode/settings.example.json
Browse files Browse the repository at this point in the history
  • Loading branch information
francis-clairicia committed Nov 4, 2023
1 parent bc8fa58 commit 3a49cad
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .vscode/settings.example.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,17 @@
"python.analysis.extraPaths": [
"./src"
],
"python.linting.mypyEnabled": true,
"python.linting.mypyArgs": [
"mypy-type-checker.importStrategy": "fromEnvironment",
"mypy-type-checker.args": [
"--config-file=pyproject.toml",
"--cache-dir=.vscode/.mypy_cache",
"--no-color-output"
"--cache-dir=.vscode/.mypy_cache"
],
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "explicit"
},
"editor.rulers": [
130
Expand All @@ -25,19 +24,21 @@
150
]
},
"black-formatter.importStrategy": "fromEnvironment",
"black-formatter.args": [
"--config",
"pyproject.toml",
"--force-exclude",
"site-packages"
],
"isort.importStrategy": "fromEnvironment",
"isort.args": [
"--settings-file",
"pyproject.toml",
"--extend-skip-glob",
"*/site-packages/*"
],
"python.linting.flake8Enabled": true,
"flake8.importStrategy": "fromEnvironment",
"python.analysis.diagnosticSeverityOverrides": {
"reportMissingImports": "error",
"reportAssertAlwaysTrue": "information",
Expand Down

0 comments on commit 3a49cad

Please sign in to comment.