Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.34 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.34 KB

@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
	}
}