Skip to content

Commit

Permalink
some vscode settings improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenham committed Oct 17, 2024
1 parent 839aab7 commit 4edecc4
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
{
"[json]": {
"editor.tabSize": 2
},
"[jsonc]": {
"editor.tabSize": 2
},
"[markdown]": {
"editor.rulers": [130]
},
"[python]": {
"editor.rulers": [130]
},
"[toml]": {
"editor.rulers": [88],
"editor.tabSize": 4
"[yaml]": {
"editor.autoIndent": "advanced",
"editor.tabSize": 2
},
"editor.rulers": [88],
"editor.tabSize": 4,
"git.branchProtection": ["master"],
"mypy-type-checker.args": ["--config-file=pyproject.toml"]
"mypy-type-checker.args": ["--config-file=pyproject.toml", "--ide"]
}

0 comments on commit 4edecc4

Please sign in to comment.