1.0.1 • Published 4 years ago

eslint-plugin-styled-no-color-value v1.0.1

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

eslint-plugin-styled-no-color-value

do not allow includes color value

npm.io

Installation

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.

Usage

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"
  ]
}

Supported Rules

  • no-color-value