Skip to content

Commit f20660d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent fa3149f commit f20660d

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

{{cookiecutter.project_name}}/.vscode/extensions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
// Linting and formatting
1414
"editorconfig.editorconfig",
1515
"charliermarsh.ruff",
16-
"esbenp.prettier-vscode",
17-
],
16+
"esbenp.prettier-vscode"
17+
]
1818
}

{{cookiecutter.project_name}}/.vscode/launch.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"args": ["-M", "html", ".", "_build"],
1313
"cwd": "${workspaceFolder}/docs",
1414
"console": "internalConsole",
15-
"justMyCode": false,
15+
"justMyCode": false
1616
},
1717
{
1818
"name": "Python: Debug Test",
@@ -23,11 +23,11 @@
2323
"console": "internalConsole",
2424
"justMyCode": false,
2525
"env": {
26-
"PYTEST_ADDOPTS": "--color=yes",
26+
"PYTEST_ADDOPTS": "--color=yes"
2727
},
2828
"presentation": {
29-
"hidden": true,
29+
"hidden": true
3030
}
31-
},
31+
}
3232
]
3333
}
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
{
22
"[python][jsonc][yaml]": {
3-
"editor.formatOnSave": true,
3+
"editor.formatOnSave": true
44
},
55
"[python]": {
66
"editor.defaultFormatter": "charliermarsh.ruff",
77
"editor.codeActionsOnSave": {
88
"source.fixAll": "always",
9-
"source.organizeImports": "always",
10-
},
9+
"source.organizeImports": "always"
10+
}
1111
},
1212
"[jsonc][yaml]": {
13-
"editor.defaultFormatter": "esbenp.prettier-vscode",
13+
"editor.defaultFormatter": "esbenp.prettier-vscode"
1414
},
1515
"python.analysis.typeCheckingMode": "basic",
1616
"python.testing.pytestEnabled": true,
17-
"python.testing.pytestArgs": ["-vv", "--color=yes"],
17+
"python.testing.pytestArgs": ["-vv", "--color=yes"]
1818
}
19-
20-

0 commit comments

Comments
 (0)