add .vscode to cookiecutter

This commit is contained in:
object-Object 2023-09-08 01:45:36 -04:00
parent 6a76687c36
commit a4e2f8266e
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"ms-python.isort",
],
}

View file

@ -0,0 +1,21 @@
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
},
"editor.rulers": [88],
},
"isort.importStrategy": "fromEnvironment",
"python.languageServer": "Pylance",
"python.analysis.diagnosticMode": "workspace",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"[html][jinja-html]": {
"editor.rulers": [120],
},
"files.associations": {
"*.js.jinja": "javascript"
}
}