oxc/no-const-enum 限制
它的作用
禁止使用 TypeScript const enum
为什么这是个问题?
const enum 是应在使用位置内联的枚举。const enum 不被打包工具支持,且与 isolatedModules 模式不兼容。
使用它们可能导致导入不存在的值(因为 const enum 会在编译时被擦除)。
示例
此规则的错误代码示例:
ts
const enum Color {
Red,
Green,
Blue,
}如何使用
通过配置文件或 CLI 启用此规则,可以使用:
json
{
"rules": {
"oxc/no-const-enum": "error"
}
}bash
oxlint --deny oxc/no-const-enum