-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
96 lines (96 loc) · 2.84 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"________Editor__________________": "",
"workbench.colorTheme": "Night Owl",
"editor.fontFamily": "Dank Mono, Fira Code, monospace",
"editor.fontLigatures": true,
"editor.wordWrap": "on",
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"workbench.startupEditor": "newUntitledFile",
"html.autoClosingTags": true,
"editor.renderWhitespace": "all",
"editor.tabCompletion": "on",
"editor.formatOnSave": true,
"editor.linkedEditing": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"workbench.sideBar.location": "right",
"security.workspace.trust.enabled": false,
"emmet.includeLanguages": {
"twig": "html",
"erb": "html",
"ruby": "html"
},
"editor.stickyTabStops": true,
"editor.bracketPairColorization.enabled": true,
"workbench.colorCustomizations": {
"editorBracketHighlight.foreground1": "#8370eb",
"editorBracketHighlight.foreground2": "#6a9ff6",
"editorBracketHighlight.foreground3": "#70ccd7",
"editorBracketHighlight.foreground4": "#8370eb",
"editorBracketHighlight.foreground5": "#6a9ff6",
"editorBracketHighlight.foreground6": "#70ccd7",
"editorBracketHighlight.unexpectedBracket.foreground": "#db6165"
},
"________Terminal________________": "",
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontWeight": "400",
"________Formatting_preferences__": "",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"javascript.preferences.quoteStyle": "single",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"prettier.tabWidth": 2,
"prettier.useTabs": true,
"[svg]": {
"editor.defaultFormatter": "jock.svg"
},
"[javascript]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[javascriptreact]": {
"editor.formatOnSave": false
},
// show eslint icon at bottom toolbar
"eslint.alwaysShowStatus": true,
// tell the ESLint plugin to run on save
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"_______Indent_rainbow___________": "",
"indentRainbow.colors": [
"rgba(126,87,194,0.4)",
"rgba(126,87,194,0.3)",
"rgba(126,87,194,0.2)"
],
"indentRainbow.errorColor": "rgba(231,76,60 ,0.2)",
"______Workspace_manager_________": "",
"workspace-manager.includeGlobPattern": ["/path/to/file/workspaces"],
"______Todo_tree_________________": "",
"todo-tree.general.tags": [
"TODO",
"TO DO",
"TO-DO",
"FIXME",
"FIX ME",
"TOFIX",
"TO FIX",
"[ ]",
"[x]"
],
"todo-tree.highlights.defaultHighlight": {
"icon": "check-circle-fill",
"type": "tag",
"foreground": "white",
"background": "#7E57C2",
"opacity": 90,
"iconColour": "#7E57C2"
},
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"editor.accessibilitySupport": "off",
"window.zoomLevel": 0,
"tabnine.experimentalAutoImports": true,
"diffEditor.ignoreTrimWhitespace": false,
"explorer.confirmDelete": false
}