赞
踩
{ "window.zoomLevel": 0, "editor.formatOnSave": true, "editor.fontSize": 18, //autoFixedOnSave 设置已废弃,采用如下新的设置 "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, // eslint 自动识别工作区 "eslint.workingDirectories": [{ "mode": "auto" }], "eslint.format.enable": true, //autoFix默认开启,只需输入字符串数组即可 "eslint.validate": ["javascript", "vue", "html"], // 防止 vetur 报错 "vetur.validation.template": false, // "vetur.validation.script": false, // "vetur.format.defaultFormatterOptions": { // "prettier": { // // 格式化不加分号 // "semi": true, // // 格式化为单引号 // "singleQuote": true // }, // "js-beautify-html": { // "wrap_line_length": 120, // "wrap_attributes": "auto", // "end_with_newline": false // } // }, // #使用带引号替代双引号 "prettier.singleQuote": true, // 在方法括号之间插入空格 "javascript.format.insertSpaceBeforeFunctionParenthesis": true, "editor.tabSize": 2, "editor.wordWrap": "on", // 默认格式化方式,统一为 prettier "editor.defaultFormatter": "esbenp.prettier-vscode", // prettier global config "prettier.semi": false, "prettier.printWidth": 80, "prettier.singleQuote": true }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。