-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvscode-settings.json
30 lines (30 loc) · 927 Bytes
/
vscode-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
{
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"explorer.confirmDragAndDrop": false,
"window.zoomLevel": 0,
"cSpell.language": "en-GB",
"javascript.updateImportsOnFileMove.enabled": "always",
"eslint.alwaysShowStatus": true,
"prettier.singleQuote": true,
"prettier.arrowParens": "always",
"prettier.tabWidth": 4,
"prettier.jsxBracketSameLine": false,
"prettier.jsxSingleQuote": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"html.format.wrapAttributes": "auto",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"tabnine.experimentalAutoImports": true,
"json.schemas": [
{
"fileMatch": ["/myfile"],
"url": "schemaURL"
}
],
"files.autoSave": "afterDelay"
}