import-js/eslint-plugin-import
no-unused-modules doesn't report unused Flow type exports
オープン
#1,540 opened on 2019/11/13
bugflowhelp wanted
Repository metrics
- Stars
- (5,939 個のスター)
- PR merge metrics
- (平均マージ 138d 22h) (30d で 3 merged PRs)
説明
// 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