-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsettings.json
35 lines (35 loc) · 998 Bytes
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"djlint.useEditorIndentation": false,
"[django-html][html]": {
"editor.defaultFormatter": "monosans.djlint",
"editor.tabSize": 2,
"djlint.enableLinting": true,
"djlint.profile": "django"
},
"files.associations": {
".pages": "yaml"
},
"files.encoding": "utf8",
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.languageServer": "Pylance",
"python.testing.pytestArgs": ["tests/pytest"],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"[terraform]": {
"editor.defaultFormatter": "hashicorp.terraform"
},
"[terraform-vars]": {
"editor.defaultFormatter": "hashicorp.terraform"
},
"workbench.editorAssociations": {
"*.db": "sqlite-viewer.option"
}
}