Skip to content

firefoxic/stylelint-config

Repository files navigation

@firefoxic/stylelint-config

License: MIT Changelog NPM version Test Status

Shared config for stylelint by firefoxic.

To see the rules that this config uses, please read the config itself.

Installation

pnpm add -D stylelint @firefoxic/stylelint-config

Usage

Set your stylelint.config.js to:

export default {
	customSyntax: "postcss-scss", // If your styles syntax is different from CSS (don't forget to install the package)
	extends: "@firefoxic/stylelint-config",
	rules: {
		// Your overrides or additions to rules
	}
}