Package Exports
- eslint-plugin-deckgl
- eslint-plugin-deckgl/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-plugin-deckgl) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ESLint-plugin-DeckGL
Deck.gl specific linting rules for ESLint
Installation
Install ESLint either locally or globally. (Note that locally, per project, is strongly preferred)
$ npm install eslint --save-devIf you installed ESLint globally, you have to install Deck.gl plugin globally too. Otherwise, install it locally.
$ npm install https://github.com/jstaab/eslint-plugin-deckgl --save-devConfiguration
Add "deckgl" to the plugins section.
{
"plugins": [
"deckgl"
]
}Enable the rules that you would like to use.
"rules": {
"deckgl/exhaustive-triggers": "warning"
}License
ESLint-plugin-DeckGL is licensed under the MIT License.