css import with flow *不*抛出错误,带有`untyped-error = true`

时间:2019-01-11 15:21:38

标签: flowtype

我期望流程在以下导入时抛出错误

import styles from './styles.css'

文件styles.css确实存在。我的.flowconfig设置是

[lints]
all=error

[options]
all=true

为什么这不会引发错误?至少我希望流量能够

  1. 无法识别css文件导入
  2. 引发未输入类型的错误

我正在使用的存储库中只有一个styles.cssindex.js文件:

// index.js
import styles from './styles.css'

function foo(x: ?number): string {
  if (x) {
    return x;
  }
  return "default string";
}

console.log(styles.something)

0 个答案:

没有答案