do not allow includes color
value
You'll first need to install ESLint:
$ npm install eslint --save-dev
Next, install eslint-plugin-styled-no-color-value
:
$ npm install eslint-plugin-styled-no-color-value --save-dev
Note: If you installed ESLint globally (using the -g
or --global
flag) then you must also install eslint-plugin-styled-no-color-value
globally.
Add this
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["styled-no-color-value"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"styled-no-color-value/no-color-value": 2
}
}
or
{
"extends": [
// other
"plugin:styled-no-color-value/recommended"
]
}
- no-color-value