"no-script-url": 2, //不允许使用javascript:void(0) "no-self-compare": 2, //不允许自己和自己比较 "no-sequences": 2, //不允许使用逗号表达式 "no-throw-literal": 2, //不允许抛出字面量错误 throw "error" "no-unused-expressions": 0, //不允许无用的表达式 "no-void": 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-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': [mode, { allow: ['warn', 'error', 'info'] }], 'no-debugger': mode, 'no-nested-ternary': 0, 'no-plusplus': [2, { allowForLoopAfterthoughts: true }], 'no-param-reassign': 1, 'import/first': 1, 'no-undef': 1, 'no-template-curly-in-string': 1, 'react/...
"no-console": "off", "no-inline-comments": "off", } } 基于Glob模式的配置 v4.1.0 +。有时,例如,如果同一目录中文件的配置必须不同,则需要进行更精细控制的配置。因此,您可以overrides使用与在命令行上传递的格式相同的格式,在仅适用于匹配特定glob模式的文件的键下提供配置app/**/*.test.js。
"no-console": "warn" } } 4.如何使用自定义的.eslintrc配置? 一旦你完成了.eslintrc的配置,你可以在Vue3项目中使用它来进行代码规范和检查。 -在终端中执行以下命令安装ESLint: npm install eslint save-dev -安装所需的插件和规则。例如,如果你添加了"eslint-plugin-import"插件,你可以执行以下命令进行...
1. `'no-console': 'off'`:允许使用console语句。在开发环境下,使用console语句有助于调试和记录信息。 2. `'no-debugger': 'off'`:允许使用debugger语句。与console类似,debugger语句用于调试,并在开发过程中非常有用。 3. `'no-unused-vars': 'warn'`:在变量未使用时显示警告。这可以帮助我们找出未使用...
"no-caller": 1,//禁止使用arguments.caller或arguments.callee "no-catch-shadow": 2,//禁止catch子句参数与外部作用域变量同名 "no-class-assign": 2,//禁止给类赋值 "no-cond-assign": 2,//禁止在条件表达式中使用赋值语句 "no-console": 2,//禁止使用console ...
'no-console': 0, //禁止使用console 'no-constant-condition': ['error'], //禁止条件表达式中出现常量 'no-control-regex': ['error'], //禁止正则表达式中出现控制字符 'no-debugger': ['error'], //禁止使用debugger 'no-dupe-args': ['error'], //禁止函数定义中出现重复参数 ...
"no-console": "warn":表示禁止在代码中使用 console.log() 等打印语句,并将其视为警告。这个规则可以帮助开发者避免在生产环境中遗留调试代码。 根据具体的项目需求和团队规范,可以根据需要配置更多的规则选项。ESLint 官方文档中提供了详细的规则列表和配置说明,可以根据需要进行参考和配置。 推荐的腾讯云相关产品:...