-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
154 lines (154 loc) · 4.13 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
// Editor rules
// ====================================================================================
"editor.fontFamily": "Input Mono",
"editor.fontWeight": "300",
"editor.fontLigatures": true,
"editor.tabSize": 2,
"editor.lineHeight": 20,
"editor.wordWrap": "on",
"explorer.confirmDelete": false,
"editor.scrollBeyondLastLine": true,
"editor.formatOnPaste": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"editor.matchBrackets": "never",
"editor.tabCompletion": "on",
"editor.parameterHints.enabled": false,
"editor.colorDecorators": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true,
},
"window.closeWhenEmpty": true,
//
// Workbench rules
// ====================================================================================
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.iconTheme": "vscode-icons",
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": true,
"workbench.startupEditor": "none",
"workbench.colorCustomizations": {
"editorCursor.foreground": "#ffc600",
"terminalCursor.foreground": "#ffc600"
},
"workbench.colorTheme": "One Monokai",
"explorer.confirmDragAndDrop": false,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"twig": "html",
"blade": "html",
},
//
// Language-specific rules
// ====================================================================================
"git.ignoreMissingGitWarning": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"twig-language-2.hover": false,
"html.format.enable": true,
"[blade]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[go]": {
"editor.tabSize": 4
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.formatOnSave": false
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.fontSize": 14,
"editor.lineHeight": 28,
"editor.fontFamily": "Input Sans"
},
"[php]": {
"editor.tabSize": 4
},
"[rust]": {
"editor.detectIndentation": true,
},
"[twig]": {},
"[vue]": {
"editor.formatOnSave": false,
"togglequotes.chars": [
"\"",
"'",
"`"
],
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.fontFamily": "Input Mono",
},
//
// Formatting rules
// ====================================================================================
"eslint.validate": [
"vue",
"html",
"javascript"
],
"prettier.disableLanguages": [
"javascript",
"javascriptreact"
],
"blade.format.enable": true,
//
// PHP rules
// ====================================================================================
"php.validate.executablePath": "/usr/bin/php",
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"php-cs-fixer.lastDownload": 1597651405888,
//
// Misc
// ====================================================================================
"files.associations": {
"*.postcss": "vue-postcss",
".stylelintrc": "json",
"*.pcss": "vue-postcss",
"*.tmpl": "html"
},
"outline.problems.enabled": false,
"outline.problems.badges": false,
"vsicons.associations.files": [
{
"icon": "css",
"extensions": [
"css"
]
}
],
"beautify.language": {
"html": [
"html",
"blade"
]
},
"go.useLanguageServer": true,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"window.zoomLevel": 0,
"phpcs.executablePath": "/Users/creator3/.composer/vendor/bin/phpcs",
"editor.renameOnType": true,
"vsicons.dontShowNewVersionMessage": true,
"extensions.ignoreRecommendations": false,
}