-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditorConfig.json
More file actions
39 lines (38 loc) · 1.4 KB
/
editorConfig.json
File metadata and controls
39 lines (38 loc) · 1.4 KB
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
{
// These are all my auto-save configs
// turn it off for JS and JSX, we will do this via eslint
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.formatOnSave": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
// tell the ESLint plugin to run on save
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
// Optional BUT IMPORTANT: If you have the prettier extension enabled for other languages like CSS and HTML, turn it off for JS since we are doing it through Eslint already
"prettier.disableLanguages": ["javascript", "javascriptreact"],
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.enabled": false,
"php.validate.executablePath": "C:\\xampp\\php\\php.exe",
"powermode.enabled": true,
"powermode.presets": "flames",
"debug.node.showUseWslIsDeprecatedWarning": false,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"workbench.startupEditor": "newUntitledFile",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"workbench.colorTheme": "One Dark Pro",
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.validate.enable": false,
"window.zoomLevel": -1,
"editor.suggestSelection": "first",
"editor.formatOnSave": true
}