# no-dupe-args
不允许 function
定义中的重复参数
配置文件中的 "extends": "eslint:recommended" 属性启用了该规则
如果函数定义中有多个参数具有相同名称,则最后一次出现 "shadows" 之前的出现。重复的名称可能是打字错误。
# 规则详情
此规则不允许函数声明或表达式中出现重复的参数名称。它不适用于箭头函数或类方法,因为解析器会报告错误。
如果 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);
};