跳至主要内容

禁止重复类成员

禁止重复的类成员。

危险

此 ESLint 规则检查的代码问题由 TypeScript 编译器自动检查。因此,不建议在新 TypeScript 项目中启用此规则。只有在您更喜欢 ESLint 错误消息而不是 TypeScript 编译器错误消息时,才需要启用此规则。

此规则扩展了基本 eslint/no-dupe-class-members 规则。它添加了对 TypeScript 方法重载定义的支持。

选项

参见 eslint/no-dupe-class-members 选项.

如何使用

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

在游乐场中尝试此规则 ↗

资源

来自 ESLint 核心 的 ❤️。