12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "files.autoSave": "afterDelay",
- "files.autoSaveDelay": 5000,
- "http.proxyAuthorization": null,
- "guides.enabled": false,
- "editor.minimap.enabled": true, //显示缩略图
- "explorer.confirmDelete": false, //文件删除时弹框确认
- "vsicons.dontShowNewVersionMessage": true, //新版本提示
- "editor.detectIndentation": false, //禁用beauty插件的缩进属性
- "editor.tabSize": 2, //制表符空格数
- "editor.formatOnSave": true, //保存时格式化文件
- "editor.wordWrap": "on", //换行方式
- "vetur.format.defaultFormatterOptions": {
- "prettier": {
- "semi": false, // 使用单引号
- "singleQuote": true // 行末不使用分号
- }
- },
- //保存时根据根目录下.eslintrc.js配置的eslint规则来检查和做一些简单的fix
- "files.autoSave": "off",
- "eslint.validate": [
- "javascript",
- "javascriptreact",
- "html",
- {
- "language": "vue",
- "autoFix": true
- }
- ],
- "eslint.options": {
- "plugins": [
- "html"
- ]
- },
- "workbench.startupEditor": "newUntitledFile",
- "workbench.iconTheme": "vscode-icons",
- "auto-rename-tag.activationOnLanguage": [
- "*"
- ]
- }
|