-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.code-workspace
More file actions
60 lines (57 loc) · 1.29 KB
/
Copy pathproject.code-workspace
File metadata and controls
60 lines (57 loc) · 1.29 KB
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
50
51
52
53
54
55
56
57
58
59
60
{
"folders": [
{
"path": "."
}
],
"settings": {
//EDITOR
"editor.tabSize": 4,
"editor.fontSize": 14,
"editor.lineHeight": 18,
"files.eol": "\n",
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 500,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.formatOnSave": true,
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"terminal.integrated.fontSize": 14,
"editor.rulers": [
80,
180
],
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
//ESLINT
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.fixAll.stylelint": "explicit"
},
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"eslint.format.enable": true,
"eslint.enable": true,
//STYLESLINT
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"stylelint.enable": true,
"stylelint.validate": [
"css",
"scss"
],
"[scss]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "stylelint.vscode-stylelint"
},
//SPELL CHECKER
"cSpell.ignoreWords": [],
}
}