typescript/prefer-namespace-keyword 正确性
作用
当使用 module 关键字而不是 namespace 时,此规则会报告。 此规则不会报告使用 TypeScript 模块声明来描述外部 API 的情况(declare module 'foo' {})。
WARNING
此规则已弃用,并将在未来的版本中移除。
在未来版本的 TypeScript 和 Oxlint 中,这将由解析器生成一个硬错误。
参见:https://github.com/microsoft/TypeScript/issues/54500、https://github.com/microsoft/TypeScript/issues/62211 和 https://github.com/microsoft/TypeScript/pull/62876。
为什么这不好?
命名空间是一种过时的组织 TypeScript 代码的方式。现在更推荐使用 ES2015 模块语法(import/export)。 对于仍在使用自定义模块 / 命名空间的项目,最好将其称为命名空间。
示例
此规则的错误代码示例:
typescript
module Example {}此规则的正确代码示例:
typescript
namespace Example {}如何使用
To enable this rule using the config file or in the CLI, you can use:
json
{
"rules": {
"typescript/prefer-namespace-keyword": "error"
}
}ts
import { defineConfig } from "oxlint";
export default defineConfig({
rules: {
"typescript/prefer-namespace-keyword": "error",
},
});bash
oxlint --deny typescript/prefer-namespace-keyword版本
此规则在 v0.7.0 中添加。
