中缀运算符空格
已弃用
格式化规则现在位于 eslint-stylistic 中。 @stylistic/ts/space-infix-ops 是此规则的替代品。
有关更多信息,请参阅 弃用格式化规则。
要求在中缀运算符周围添加空格。
🔧
此规则报告的一些问题可以通过 --fix
ESLint 命令行选项 自动修复。
此规则扩展了基本 eslint/space-infix-ops
规则。它添加了对枚举成员的支持。
enum MyEnum {
KEY = 'value',
}
选项
请参阅 eslint/space-infix-ops
选项。
如何使用
.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"space-infix-ops": "off",
"@typescript-eslint/space-infix-ops": "error"
}
};
在游乐场中尝试此规则 ↗