版本

arrow-parens

要求在箭头函数参数周围使用括号

🔧 可修复

此规则报告的一些问题可以通过 --fix 命令行 选项自动修复。

此规则已在 ESLint v8.53.0 中 **弃用**。请使用 相应的规则@stylistic/eslint-plugin-js 中。

箭头函数在只有一个参数时可以省略括号。在所有其他情况下,参数必须用括号括起来。此规则强制在箭头函数中一致使用括号。

规则详情

此规则强制在箭头函数参数周围使用括号,而不管参数个数如何。例如

// Bad
a => {}

// Good
(a) => {}

遵循此样式将帮助您找到箭头函数 (=>),这些函数在条件中可能被错误地包含在内,而此时本意是使用诸如 >= 之类的比较。

// Bad
if (a => 2) {
}

// Good
if (a >= 2) {
}

此规则还可以配置为在不需要括号时避免使用括号。

// Bad
(a) => {}

// Good
a => {}

选项

此规则有一个字符串选项和一个对象选项。

字符串选项为

  • "always"(默认)在所有情况下都要求在参数周围使用括号。
  • "as-needed" 在可以省略括号的地方不强制使用括号。

"as-needed" 选项的变体的对象属性

  • "requireForBlockBody": true 修改 as-needed 规则,以便如果函数体在指令块中(用大括号括起来),则要求使用括号。

always

使用默认 "always" 选项时,此规则的 错误 代码示例

在 Playground 中打开
/*eslint arrow-parens: ["error", "always"]*/

a => {};
a => a;
a => {'\n'};
a.then(foo => {});
a.then(foo => a);
a(foo => { if (true) {} });

使用默认 "always" 选项时,此规则的 正确 代码示例

在 Playground 中打开
/*eslint arrow-parens: ["error", "always"]*/

() => {};
(a) => {};
(a) => a;
(a) => {'\n'}
a.then((foo) => {});
a.then((foo) => { if (true) {} });

如果语句

此选项的好处之一是它可以防止在条件语句中错误地使用箭头函数。

var a = 1;
var b = 2;
// ...
if (a => b) {
 console.log('bigger');
} else {
 console.log('smaller');
}
// outputs 'bigger', not smaller as expected

if 语句的内容是一个箭头函数,而不是比较。

如果箭头函数是故意的,则应将其用括号括起来以消除歧义。

var a = 1;
var b = 0;
// ...
if ((a) => b) {
 console.log('truthy value returned');
} else {
 console.log('falsy value returned');
}
// outputs 'truthy value returned'

以下是此行为的另一个示例

var a = 1, b = 2, c = 3, d = 4;
var f = a => b ? c: d;
// f = ?

f 是一个箭头函数,它以 a 作为参数并返回 b ? c: d 的结果。

这应该像这样重写

var a = 1, b = 2, c = 3, d = 4;
var f = (a) => b ? c: d;

as-needed

使用 "as-needed" 选项时,此规则的 错误 代码示例

在 Playground 中打开
/*eslint arrow-parens: ["error", "as-needed"]*/

(a) => {};
(a) => a;
(a) => {'\n'};
a.then((foo) => {});
a.then((foo) => a);
a((foo) => { if (true) {} });
const f = /** @type {number} */(a) => a + a;
const g = /* comment */ (a) => a + a;
const h = (a) /* comment */ => a + a;

使用 "as-needed" 选项时,此规则的 正确 代码示例

在 Playground 中打开
/*eslint arrow-parens: ["error", "as-needed"]*/

() => {};
a => {};
a => a;
a => {'\n'};
a.then(foo => {});
a.then(foo => { if (true) {} });
(a, b, c) => a;
(a = 10) => a;
([a, b]) => a;
({a, b}) => a;
const f = (/** @type {number} */a) => a + a;
const g = (/* comment */ a) => a + a;
const h = (a /* comment */) => a + a;

requireForBlockBody

{ "requireForBlockBody": true } 选项的 错误 代码示例

在 Playground 中打开
/*eslint arrow-parens: [2, "as-needed", { "requireForBlockBody": true }]*/

(a) => a;
a => {};
a => {'\n'};
a.map((x) => x * x);
a.map(x => {
  return x * x;
});
a.then(foo => {});

{ "requireForBlockBody": true } 选项的 正确 代码示例

在 Playground 中打开
/*eslint arrow-parens: [2, "as-needed", { "requireForBlockBody": true }]*/

(a) => {};
(a) => {'\n'};
a => ({});
() => {};
a => a;
a.then((foo) => {});
a.then((foo) => { if (true) {} });
a((foo) => { if (true) {} });
(a, b, c) => a;
(a = 10) => a;
([a, b]) => a;
({a, b}) => a;

版本

此规则是在 ESLint v1.0.0-rc-1 中引入的。

进一步阅读

资源

更改语言