具有react-native的绝对路径引发了eslint错误

时间:2016-10-13 15:31:15

标签: react-native absolute-path eslint

在我的React Native应用中,在package.json我已将名称设置为rpms。这允许我这样做:

import Component from 'rpms/App/common/Component'

使用此类导入可以很好地使用Flow,但eslint-plugin-import会引发import/no-extraneous-dependenciesimport/no-unresolved。我已加入我的规则:

"import/no-unresolved": [2, { "ignore": ["rpms"] }],

这样我断开import/no-unresolved。要禁用另一个我试过的:

"settings": {
  "import/ignore": ["rpms"]
},

然而它不起作用。但是,我有一种感觉,也许忽略这些错误并不是正确的方法。

1 个答案:

答案 0 :(得分:3)

发布了解决此问题的软件包

https://www.npmjs.com/package/eslint-import-resolver-reactnative

让我知道它是怎么回事。