eslint-config-stylelint
v23.0.0
Published
stylelint org's shareable config for eslint
Downloads
61,723
Readme
eslint-config-stylelint
Stylelint org's shareable config for ESLint.
For consistent JavaScript across Stylelint's repos.
Installation
$ npm install eslint-config-stylelint --save-dev
Usage
Add this to your ESLint config:
import stylelintConfig from "eslint-config-stylelint";
export default [...stylelintConfig];
For Jest
Install the plugin additionally:
$ npm install eslint-plugin-jest --save-dev
Then, update your config:
import stylelintConfig from "eslint-config-stylelint";
import stylelintJestConfig from "eslint-config-stylelint/jest";
export default [...stylelintConfig, ...stylelintJestConfig];