Skip to content

Stylelint org's shareable config for eslint

License

Notifications You must be signed in to change notification settings

stylelint/eslint-config-stylelint

Repository files navigation

eslint-config-stylelint

NPM version Build Status

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];