Skip to main content

func-call-spacing

danger
This rule will soon be moved to eslint-stylistic. See What About Formatting? for more information.

Require or disallow spacing between function identifiers and their invocations.

🔧

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


此规则扩展了基本 eslint/func-call-spacing 规则。 它添加了对函数调用上的泛型类型参数的支持。

英:This rule extends the base eslint/func-call-spacing rule. It adds support for generic type parameters on function calls.

如何使用

.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"func-call-spacing": "off",
"@typescript-eslint/func-call-spacing": "error"
}
};
在线运行试试这个规则 ↗

选项

参见 eslint/func-call-spacing 选项

资源

摘自 ❤️ ESLint 内核