eslint-plugin-a3-application-custom-eslint
v1.0.1
Published
Custom eslint plugin for A3 specific validations
Downloads
3
Maintainers
Readme
eslint-plugin-a3-application-custom-eslint
Custom eslint plugin for A3 specific validations
Installation
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-a3-application-custom-eslint
:
npm install eslint-plugin-a3-application-custom-eslint --save-dev
Usage
Add a3-application-custom-eslint
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"a3-application-custom-eslint"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"a3-application-custom-eslint/rule-name": 2
}
}
Supported Rules
- No CustomGrid - Custom Grid should not be used directly in the application.
- No SpinnerComponent - Spinner Component (Loader) should not be used directly.