"no-throw-literal": 2, //不允许抛出字面量错误 throw "error" "no-unused-expressions": 0, //不允许无用的表达式 "no-void": 2, //不允许void操作符 "no-warning-comments": [1, { "terms": ["todo", "fixme", "any other term"] }], //不允许警告备注 "no-with": 2, //不允许使用...
"no-console":"off", 开启debugger"no-debugger":"off", 关闭代码编写时以空格开头"generator-star-spacing":"off", 开启代码编写时可写tab键"no-tabs":"off", 开启var定义"no-unused-vars":"off", 开启不规则空白"no-irregular-whitespace":"off", 关闭泛型为any的报错"@typescript-eslint/no-explicit-...
"no-octal-escape": 2,//禁止使用八进制转义序列 "no-param-reassign": 2,//禁止给参数重新赋值 "no-path-concat": 0,//node中不能使用__dirname或__filename做路径拼接 "no-plusplus": 0,//禁止使用++,-- "no-process-env": 0,//禁止使用process.env "no-process-exit": 0,//禁止使用process....
"no-obj-calls": 2,//不能调用内置的全局对象,比如Math() JSON() "no-octal": 2,//禁止使用八进制数字 "no-octal-escape": 2,//禁止使用八进制转义序列 "no-param-reassign": 2,//禁止给参数重新赋值 "no-path-concat": 0,//node中不能使用__dirname或__filename做路径拼接 "no-plusplus": 0...
"no-console": "warn" } } 4.如何使用自定义的.eslintrc配置? 一旦你完成了.eslintrc的配置,你可以在Vue3项目中使用它来进行代码规范和检查。 -在终端中执行以下命令安装ESLint: npm install eslint save-dev -安装所需的插件和规则。例如,如果你添加了"eslint-plugin-import"插件,你可以执行以下命令进行...
'no-cond-assign': ['error'], //禁止条件表达式中出现赋值操作,while条件中使用括号可以避免错误 'no-console': 0, //禁止使用console 'no-constant-condition': ['error'], //禁止条件表达式中出现常量 'no-control-regex': ['error'], //禁止正则表达式中出现控制字符 ...
"no-console": "off", "no-inline-comments": "off", } } 基于Glob模式的配置 v4.1.0 +。有时,例如,如果同一目录中文件的配置必须不同,则需要进行更精细控制的配置。因此,您可以overrides使用与在命令行上传递的格式相同的格式,在仅适用于匹配特定glob模式的文件的键下提供配置app/**/*.test.js。
'no-console':0,// 禁止使用console 'no-debugger':0,// 禁止使用debugger 'prefer-const':0,// 建议使用 const 关闭 'no-dupe-keys':2,// 在创建对象字面量时不允许键重复 {a:1,a:1} 'no-dupe-args':2,// 函数参数不能重复 'no-duplicate-imports': [ ...
1. `'no-console': 'off'`:允许使用console语句。在开发环境下,使用console语句有助于调试和记录信息。 2. `'no-debugger': 'off'`:允许使用debugger语句。与console类似,debugger语句用于调试,并在开发过程中非常有用。 3. `'no-unused-vars': 'warn'`:在变量未使用时显示警告。这可以帮助我们找出未使用...
no-await-in-loop":"off",// 禁止与负零进行比较"no-compare-neg-zero":"error",// 禁用 console"no-console":0,// 禁止在条件中使用常量表达式// if (false) {// doSomethingUnfinished();// } //cuowu"no-constant-condition":2,// 禁止在正则表达式中使用控制字符 :new RegExp("\x1f")"no...