0.11.0 • Published 3 months ago

eslint-plugin-chakra-ui v0.11.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

eslint-plugin-chakra-ui

npm license

ESLint rules for Chakra UI.

Requirement

This plugin depends on TypeScript to check whether the component is a Chakra component or not. You need to install @typescript-eslint/parser but you can still write vanilla JavaScript.

TypeScript 4.4 or higher is supported. We don't test 4.3 or below but it probably works.

typescript-eslint v6 or higher is supported. v5 or below is NOT supported.

Installation

You'll first need to install ESLint.

npm i eslint --save-dev

Next, install eslint-plugin-chakra-ui, @typescript-eslint/parser.

npm install eslint-plugin-chakra-ui @typescript-eslint/parser --save-dev

Then set the parser property and add chakra-ui to the plugins property of your .eslintrc.js configuration file. You also need to set project and tsconfigRootDir in parserOptions to enable TypeScript information.

module.exports = {
  parser: "@typescript-eslint/parser",
  plugins: ["chakra-ui"],
  parserOptions: {
    project: true,
    tsconfigRootDir: __dirname,
  },
};

Now you can add chakra-ui rules:

module.exports = {
  // ...
  rules: {
    "chakra-ui/props-order": "error",
    "chakra-ui/props-shorthand": "error",
    "chakra-ui/require-specific-component": "error",
  },
};

Supported Rules

Every rule is fixable with eslint --fix.

Contributing

See contributing guide.

Prior Art

This plugin is inspired by eslint-plugin-tailwind-css.

0.11.0

3 months ago

0.10.1

8 months ago

0.10.0

9 months ago

0.9.1

10 months ago

0.9.0

11 months ago

0.8.0

1 year ago

0.7.6

1 year ago

0.7.5

2 years ago

0.7.2

2 years ago

0.7.4

2 years ago

0.7.3

2 years ago

0.7.1

2 years ago

0.6.4

2 years ago

0.7.0

2 years ago

0.6.3

2 years ago

0.6.2

2 years ago

0.6.1

2 years ago

0.6.0

2 years ago

0.5.0

2 years ago

0.4.0

2 years ago

0.3.1

2 years ago

0.3.0

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago