Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1000 Bytes

README.md

File metadata and controls

41 lines (32 loc) · 1000 Bytes

@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: