0.0.5 • Published 4 years ago
eslint-plugin-ada v0.0.5
eslint-plugin-ada
Naming rules plugin
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-ada:
$ npm install eslint-plugin-ada --save-devUsage
Add ada to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
module.exports = {
extends: [ 'plugin:ada/recommended' ]or
{
"plugins": ["ada"]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"ada/jsx-events-naming": "error"
}
}Supported Rules
- Fill in provided rules here