mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-12 05:01:03 +00:00
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnSaveMode": "modifications",
|
|
"files.autoSave": "onFocusChange",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit"
|
|
},
|
|
"[typescript]": {
|
|
"editor.tabSize": 2,
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"prettier.printWidth": 1000
|
|
},
|
|
"[json]": {
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"editor.suggest.insertMode": "replace",
|
|
"editor.tabSize": 2
|
|
},
|
|
"[vue]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.tabSize": 2,
|
|
"prettier.printWidth": 1000
|
|
},
|
|
"files.refactoring.autoSave": false,
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
"**/*.code-search": true,
|
|
"chrome": true,
|
|
"yarn-error.log": true,
|
|
"yarn.lock": true,
|
|
".yalc/": true
|
|
},
|
|
"files.exclude": {
|
|
".yalc/": false,
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
"**/Thumbs.db": true
|
|
},
|
|
"prettier.printWidth": 1000
|
|
}
|