Shareable Stylelint configuration.
Note
See @jgarber/stylelint-config-scss for a shareable Stylelint configuration suitable for SCSS syntax Sass files.
npm install --save-dev @jgarber/stylelint-config
Stylelint supports a variety of configuration file formats.
In a file named .stylelintrc
or .stylelintrc.yml
:
---
extends: "@jgarber/stylelint-config"
---
In a file named .stylelintrc
or .stylelintrc.json
:
{
"extends": "@jgarber/stylelint-config"
}
In a JavaScript file using ECMAScript module (ESM) syntax:
// stylelint.config.mjs
export { default } from "@jgarber/stylelint-config";
In a JavaScript file using CommonJS module syntax:
// stylelint.config.cjs
module.exports = {
extends: "@jgarber/stylelint-config"
}
@jgarber/stylelint-config is freely available under the MIT License.