1.2.0 • Published 5 months ago

eslint-plugin-no-dimensions v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

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.

1.2.0

5 months ago

1.1.0

5 months ago

1.0.1

5 months ago

1.0.0

5 months ago