forked from kobotoolbox/kpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kpi.code-workspace
49 lines (43 loc) · 1.31 KB
/
kpi.code-workspace
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"editorconfig.editorconfig", // EditorConfig
// Linters and Formatters
"ms-python.black-formatter", // Black (also installs MS Pylance)*
"dbaeumer.vscode-eslint", // ESLint
"rvest.vs-code-prettier-eslint", // Prettier
"stylelint.vscode-stylelint", // Stylelint
"freewil.vscode-coffeelint2", // Coffeelint
// Status Bar Toggle for Format and AutoFix on Save
"tombonnike.vscode-status-bar-format-toggle", // Formatting Toggle
// Syntax Support
"almahdi.code-django", // Django templates
]
},
"settings": {
// Black
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
// Prettier
"[typescript][typescriptreact][javascript][javascriptreact]": {
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
// Stylelint
"stylelint.validate": ["css", "scss"],
"css.validate": false,
"scss.validate": false,
// Formatting Toggle
"formattingToggle.affects": [
"editor.formatOnSave",
"editor.codeActionsOnSave.source.fixAll.eslint",
"editor.codeActionsOnSave.source.fixAll.stylelint",
],
"typescript.tsdk": "node_modules/typescript/lib",
},
}