0.2.0 • Published 5 years ago

eslint-import-resolver-react-native v0.2.0

Weekly downloads
3,798
License
MIT
Repository
github
Last release
5 years ago

eslint-import-resolver-react-native

eslint-plugin-import resolver for react-native that tries to resolve .ios.js and .android.js if import is not resolved, and also checks for @image extensions

Ex:

  • table.ios.js
  • table.ios.gif
  • table@3.5x.gif
  • table@3.5x.ios.gif

##Install

npm i eslint-import-resolver-react-native --save-dev

.eslintrc

{
  ...
  settings: {
    "import/resolver": "react-native"
  }
  ...
}

Options

platform: 'both' || 'ios' || 'android' || 'any'
default = 'both'

'both' - .ios and .android file needs to be present to resolve
'any' - .ios and/or .android file needs to be present to resolve
'ios' - only looks for .ios files
'android' - only looks for .android files

{
  ...
  settings: {
    "import/resolver": {
      "react-native": {platform: 'ios'}
    }
  }
  ...
}