eslint-plugin-chartjs
v0.1.0
Published
Eslint plugin for the librairy Chart.js
Downloads
3
Maintainers
Readme
eslint-plugin-chartjs
Eslint plugin for the librairy Chart.js
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-chartjs
:
$ npm install eslint-plugin-chartjs --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-chartjs
globally.
Usage
Add chartjs
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"chartjs"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"chartjs/font-color": "warn",
"chartjs/min-max-configuration": "warn",
}
}
Supported Rules
- font-color
- min-max-configuration
Key: :heavy_check_mark: = recommended, :wrench: = fixable
| Name | Description | :heavy_check_mark: | :wrench: |
| ---- | ----------- | ------------------ | -------- |
| chartjs/font-color
| check option defaultFontColor
and fontColor
| | |
| chartjs/min-max-configuration
| min max configuration | | :wrench: |