eslint-plugin-no-dimensions
v1.2.0
Published
ESLint plugin to disallow the use of Dimensions.get('window') in react-native
Downloads
23
Maintainers
Readme
eslint-plugin-no-dimensions
ESLint plugin to disallow the use of Dimensions.get('window') in react-native.
Installation
Install the plugin with npm:
npm install eslint-plugin-no-dimensions
Usage
In your .eslintrc file, add no-dimensions to your plugins and rules:
{
"plugins": [
"no-dimensions"
],
"rules": {
"no-dimensions/no-dimensions": "error"
}
}
Release new version
To release a new version, run the following commands:
npm login
npm run release
Rules
no-dimensions
This rule checks for usage of Dimensions.get('window') and suggests using useWindowDimensions() instead.
License
This project is licensed under the MIT License.