1.2.0 • Published 2 years ago
eslint-plugin-no-dimensions v1.2.0
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-dimensionsUsage
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 releaseRules
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.