@getluko/eslint-plugin-react-native
v0.1.2
Published
GetLuko React Native ESLint Plugin created by the App Core guild
Downloads
12
Maintainers
Readme
@getluko/eslint-plugin-react-native
This library was generated with Nx.
Building
Run nx build eslint-plugin-react-native
to build the library.
Running unit tests
Run nx test eslint-plugin-react-native
to execute the unit tests via Jest.
@getluko/eslint-plugin-mobile-guidelines
Installation
yarn add @getluko/eslint-plugin-react-native --dev
Configuration
.eslintrc.js
module.exports = {
plugins: ['@getluko/react-native'],
rules: {
'@getluko/react-native/lower-dash-case-test-id': 1,
'@getluko/react-native/i18n-avoid-global-imports: 2,
}
Rules
@getluko/react-native/lower-dash-case-test-id
Allows you to enforce a consistent naming pattern for testID prop which expect a lower dash case.
// bad ❌
return (
<Element
testID="ElementTestID"
/>
);
// good ✅
return (
<Element
testID="element-test-id"
/>
);
@getluko/react-native/i18n-avoid-global-imports
Allows you to enforce i18n by avoiding global imports. it allows changing language dynamically without restarting the app.
// bad ❌
const key = i18n.t('key');
return (
<Text>{key}</Text>
)
// good ✅
const getKey = () => i18n.t('key');
return (
<Text>{getKey()}</Text>
);