加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 930 Bytes
一键复制 编辑 原始数据 按行查看 历史
卞童 提交于 2018-09-30 17:46 . init
module.exports = {
// root: true,
// parser: 'babel-eslint', // 解析器
// parserOptions: {
// sourceType: 'module' // 类型
// },
// // 拓展规则 当采用时 默认给所有node_modules 添加规则
// extends: 'standard',
// // 插件
// plugins: [
// 'html' // 用来识别 .vue 中的js代码
// ],
// // 规则 0 关闭规则 1 开启规则 使用警告级别提示错误 2 开启规则 使用错误级别 提示错误
// 'rules': {
// // allow paren-less arrow functions
// 'arrow-parens': 0,
// // allow async-await
// 'generator-star-spacing': 0,
// // allow debugger during development
// 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
// }
"files.autoSave": "off",
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
{ "language": "vue", "autoFix": true }
],
"eslint.options": {
"plugins": ["html"]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化