跳至內容

oxc/no-barrel-file 限制

作用

禁止使用包含 export * 語句的 barrel files,且模組總數超過閾值。

預設閾值為 100;

參考

範例

無效

javascript
export * from "foo"; // where `foo` loads a subtree of 100 modules
import * as ns from "foo"; // where `foo` loads a subtree of 100 modules

有效

javascript
export { foo } from "foo";

參考

以 MIT 授權發布。