Skip to content

Commit

Permalink
chore: improve VS Code Python settings
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickkirschen committed May 10, 2024
1 parent 371a57d commit c8f5ab4
Showing 1 changed file with 27 additions and 17 deletions.
44 changes: 27 additions & 17 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
{
"cSpell.language": "en",
"editor.formatOnSave": true,
"editor.wordWrap": "on",
"editor.rulers": [
80,
120
],
"cSpell.words": [
"ddir",
"pytest",
"venv",
"yannickkirschen"
],
"autopep8.args": [
"--max-line-length=140"
]
}
"cSpell.language": "en",
"editor.formatOnSave": true,
"editor.wordWrap": "on",
"editor.rulers": [
80,
120
],
"cSpell.words": [
"ddir",
"pytest",
"venv",
"yannickkirschen"
],
"autopep8.args": [
"--max-line-length=140"
],
"flake8.args": [
"--select=E9,F63,F7,F82",
"--max-line-length=140"
],
"python.analysis.typeCheckingMode": "strict",
"python.analysis.autoImportCompletions": false,
"python.languageServer": "Jedi",
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
}
}

0 comments on commit c8f5ab4

Please sign in to comment.