import-js/eslint-plugin-import
no-unused-modules doesn't report unused Flow type exports
开放
#1,540 创建于 2019年11月13日
bugflowhelp wanted
仓库指标
- 星标
- (5,940 个星标)
- 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