Eslint参考手册
规则 | Rules
no-dupe-args
配置文件中的"extends": "eslint:recommended"
属性启用此规则。
如果在一个函数定义中有多个参数具有相同的名称,则最后一个匹配项会“遮蔽”前面的匹配项。重复的名称可能是打字错误。
规则细节
此规则不允许在函数声明或表达式中使用重复的参数名称。它不适用于箭头函数或类方法,因为解析器报告错误。
如果 ESLint 在严格模式下解析代码,解析器(而不是此规则)会报告错误。
此规则的错误代码示例:
/*eslint no-dupe-args: "error"*/
function foo(a, b, a) {
console.log("value of the second a:", a);
}
var bar = function (a, b, a) {
console.log("value of the second a:", a);
};
此规则的正确代码示例:
/*eslint no-dupe-args: "error"*/
function foo(a, b, c) {
console.log(a, b, c);
}
var bar = function (a, b, c) {
console.log(a, b, c);
};
版本
该规则在 ESLint 0.16.0中引入。
资源
- 规则资源
- 文档资源
规则 | Rules相关
ESLint 是一个代码规范和错误检查工具,有以下几个特性。所有东西都是可以插拔的。你可以调用任意的 rule api 或者 formatter api 去打包或者定义 rule or formatter。任意的 rule 都是独立的。没有特定的 coding style,你可以自己配置。
主页 | https://eslint.org/ |
源码 | https://github.com/eslint/eslint |
发布版本 | 4.12.0 |