UNPKG

eslint-import-resolver-react-native

Version:

eslint-plugin-import resolver for react-native that tries to resolve .ios.js and .android.js imports

49 lines (39 loc) 902 B
# 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'} } } ... } ```