-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.json
49 lines (49 loc) · 1.38 KB
/
vscode.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"workbench.colorTheme" : "Dracula",
"workbench.iconTheme" : "material-icon-theme",
"workbench.editor.enablePreview" : false,
"workbench.editor.highlightModifiedTabs" : true,
"window.zoomLevel": 0,
"editor.fontFamily" : "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize" : 13,
"editor.fontLigatures" : true,
"editor.cursorStyle" : "block",
"editor.cursorBlinking" : "smooth",
"editor.minimap.enabled" : false,
"editor.rulers" : [100],
"editor.formatOnSave" : false,
"files.exclude" : {
"**\/__pycache__" : true,
"**\/.pytest_cache" : true
},
"eslint.format.enable": true,
"eslint.alwaysShowStatus" : true,
"[javascript]" : {
"editor.formatOnSave" : true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescript]" : {
"editor.formatOnSave" : true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescriptreact]": {
"editor.formatOnSave" : true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[javascriptreact]": {
"editor.formatOnSave" : true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[json]": {
"editor.defaultFormatter" : "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter" : "esbenp.prettier-vscode"
},
"css.validate": false,
"scss.validate": false,
"stylelint.enable": true,
"stylelint.validate": [
"scss"
]
}