1.1.2 • Published 4 years ago

@bem-react/eslint-plugin v1.1.2

Weekly downloads
2
License
MPL-2.0
Repository
github
Last release
4 years ago

@bem-react/eslint-plugin · npm (scoped)

Plugin for checking some things in projects based on BEM React.

Usage

Add @bem-react to the plugins section of your .eslintrc configuration file:

{
  "plugins": ["@bem-react"]
}

Then configure the rules you want to use under the rules section.

{
  "rules": {
    "@bem-react/no-classname-runtime": "warn",
    "@bem-react/whitelist-levels-imports": [
      "error",
      {
        "defaultLevel": "common",
        "whiteList": {
          "common": ["common"],
          "desktop": ["common", "desktop"],
          "mobile": ["common", "mobile"]
        }
      }
    ]
  }
}

Supported Rules

Currently is supported: