eslint-config-stylelint
v26.0.0
Published
stylelint org's shareable config for eslint
Downloads
75,256
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-devUsage
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-devThen, update your config:
import stylelintConfig from "eslint-config-stylelint";
import stylelintJestConfig from "eslint-config-stylelint/jest";
export default [...stylelintConfig, ...stylelintJestConfig];