func-call-spacing
已弃用
格式化规则现在位于 eslint-stylistic 中。 @stylistic/ts/func-call-spacing 是此规则的替代方案。
有关更多信息,请参阅 弃用格式化规则。
要求或禁止函数标识符与其调用之间存在空格。
🔧
此规则报告的一些问题可以通过 --fix
ESLint 命令行选项 自动修复。
此规则扩展了基本 eslint/func-call-spacing
规则。它为函数调用上的泛型类型参数添加了支持。
选项
请参阅 eslint/func-call-spacing
选项。
如何使用
.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"
}
};
在游乐场中尝试此规则 ↗