跳至主要内容

keyword-spacing

已弃用

格式化规则现在位于 eslint-stylistic 中。 @stylistic/ts/keyword-spacing 是此规则的替代品。
有关更多信息,请参阅 弃用格式化规则

强制在关键字前后使用一致的空格。

🔧

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

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

选项

请参阅 eslint/keyword-spacing 选项

如何使用

.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"keyword-spacing": "off",
"@typescript-eslint/keyword-spacing": "error"
}
};

在 playground 中尝试此规则 ↗

资源

来自 ESLint 核心 的 ❤️。