-
Notifications
You must be signed in to change notification settings - Fork 25
/
companies.code-workspace
53 lines (53 loc) · 1.26 KB
/
companies.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
50
51
52
53
{
"folders": [
{
"path": "."
}
],
"settings": {
"css.trace.server": "off",
"gitlens.advanced.telemetry.enabled": false,
"html.trace.server": "off",
"javascript.validate.enable": false,
"json.trace.server": "off",
"markdown.trace": "off",
"screencastMode.onlyKeyboardShortcuts": true,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"markdownlint.config": {
"default": true,
"MD003": {
"style": "atx"
},
"MD012": false,
"MD025": false,
"MD033": false,
"MD041": false
},
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.renderWhitespace": "all",
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.tslint": true,
"source.fixAll.stylelint": true
},
"[html]": {
"editor.formatOnSave": false
},
"[njk]": {
"editor.formatOnSave": false
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
}