HexCasting/.vscode/settings.json

22 lines
615 B
JSON
Raw Normal View History

2023-08-07 01:27:52 +02:00
{
"[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],
},
2023-09-02 19:25:23 +02:00
"files.associations": {
"*.js.jinja": "javascript"
}
}