//条件语句的条件中不允许出现赋值运算符"no-console": 2,//不允许出现console语句"no-constant-condition": 2,//条件语句的条件中不允许出现恒定不变的量"no-control-regex": 2,//正则表达式中不允许出现控制字符"no-debugger": 2,//不允许出现debugger语句"no-dupe-args": 2,//函数定义...
"no-control-regex": 2,//禁止在正则表达式中使用控制字符 "no-debugger": 2,//禁止使用debugger "no-delete-var": 2,//不能对var声明的变量使用delete操作符 "no-div-regex": 1,//不能使用看起来像除法的正则表达式/=foo/ "no-dupe-keys": 2,//在创建对象字面量时不允许键重复 {a:1,a:1} "...
plugins: ['html'],'rules': {//0:关闭 1:警告 2:错误'arrow-parens': 0,//箭头函数用小括号括起来'generator-star-spacing': 0,//生成器函数*的前后空格'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,//debugger'no-console': 0,//console打印"no-undef": 1,//未定义的...
9 "no-const-assign": 2,//禁止修改const声明的变量 10 "no-constant-condition": 2,//禁止在条件中使用常量表达式 if(true) if(1) 11 "no-continue": 0,//禁止使用continue 12 "no-control-regex": 2,//禁止在正则表达式中使用控制字符 13 "no-debugger": 2,//禁止使用debugger 14 "no-delete-va...
// allow optionalDependencies 'import/no-extraneous-dependencies': ['error', { 'optionalDependencies': ['test/unit/index.js'] }], // try to fix the line break problem 'linebreak-style': ["error", "windows"], // allow debugger during development 'no-debugger': process.env.NODE_ENV ==...
module.exports = { root: true, // parser: 'babel-eslint', parserOptions: { sourceType: 'module' }, extends: 'airbnb-base', // required to lint *.vue files plugins: [ 'html' ], // add your custom rules here 'rules': { 'no-debugger': process.env.NODE_ENV === 'production' ...
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off", "prettier/prettier": [ "error", { // tab缩进大小,默认为2 "tabWidth": 2, // 使用tab缩进,默认false "useTabs": false, // 使用分号, 默认true "semi": false, ...
{ warnings: false, drop_console: true, drop_debugger: false, pure_funcs: ["console.log"] //移除console } }, sourceMap: false, parallel: true }) ); config.plugins = [...config.plugins, ...plugins]; 原文链接:前端时空 - 手把手教你搞定 vue-cli4 配置 } } };复制代码 ✅✅如果...
"no-debugger": 2,//禁⽌使⽤debugger "no-delete-var": 2,//不能对var声明的变量使⽤delete操作符 "no-div-regex": 1,//不能使⽤看起来像除法的正则表达式/=foo/ "no-dupe-keys": 2,//在创建对象字⾯量时不允许键重复 {a:1,a:1} "no-dupe-args": 2,//函数参数不能重复 "no-...