import-js/eslint-plugin-import

no-unused-modules doesn't report unused Flow type exports

开放

#1,540 创建于 2019年11月13日

 (0 条评论) (0 个反应) (0 位负责人)JavaScript (1,549 个派生)batch import
bugflowhelp wanted

仓库指标

星标
 (5,938 个星标)
PR 合并指标
 (平均合并 138天 22小时) (30 天内合并 3 个 PR)

描述

// foo.js

// @flow strict
export type Foo = string
export default ''
// index.js

// @flow strict
import foo from './foo'

Expected: export type Foo is reported as unused Actual: no errors

贡献者指南