-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
61 lines (58 loc) · 1.86 KB
/
settings.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
50
51
52
53
54
55
56
57
58
59
60
61
{
// off for accept suggestions on tab
"editor.acceptSuggestionOnEnter": "off",
// on for accept suggestions on enter
// "editor.acceptSuggestionOnEnter": "on",
// to save files when you focus on anything else
"files.autoSave": "onFocusChange",
// to include your user snippets on top of intellisense suggestions
"editor.snippetSuggestions": "top",
// to configure formatting files on save
// change your formatter to suit your preferences
"editor.formatOnSave": true,
"javascript.validate.enable": true,
"ruby.format": "rubocop",
// path to rubocop (run `which rubocop`)
"ruby.rubocop.executePath": "",
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescript]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true
}
},
"[ruby]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "misogi.ruby-rubocop"
},
"[scss]": {
"editor.formatOnSave": true
},
"[css]": {
"editor.formatOnSave": true
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// to customize your bracket pair colors (choose colors you like)
"editor.bracketPairColorization.enabled": true,
"workbench.colorCustomizations": {
"editorBracketHighlight.foreground1": "#1F2020",
"editorBracketHighlight.foreground2": "#b2811e",
"editorBracketHighlight.foreground3": "#CC727B",
"editorBracketHighlight.foreground6": "#136F63",
"editorBracketHighlight.foreground5": "#1F2020",
"editorBracketHighlight.foreground4": "#b2811e",
"editorBracketHighlight.unexpectedBracket.foreground": "#CC727B"
}
}