-
Notifications
You must be signed in to change notification settings - Fork 46
/
flowcrypt-browser.code-workspace
43 lines (43 loc) · 1.19 KB
/
flowcrypt-browser.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
{
"settings": {
"typescript.tsdk": "./node_modules/typescript/lib",
"javascript.preferences.importModuleSpecifier": "relative",
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.quoteStyle": "single",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"eslint.validate": ["javascript", "typescript"],
"eslint.useFlatConfig": true,
"html.format.enable": false,
"htmlhint.options": {
"doctype-first": false
},
"files.exclude": {
"**/node_modules/**": true
},
"errorLens.enabledDiagnosticLevels": ["error"],
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.fixAll.stylelint": "explicit"
},
"diffEditor.wordWrap": "on",
"editor.rulers": [160]
},
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint",
"htmlhint.vscode-htmlhint",
"usernamehw.errorlens"
]
}
}