@fullhaus/stylelint-config
v0.2.2
Published
Default stylelint configuration for FULLHAUS projects.
Downloads
180
Readme
FULLHAUS stylelint configuration
This repository contains the stylelint configuration used for projects maintained by FULLHAUS.
Installation
You can install the FULLHAUS stylelint configuration using a package manager of your choice:
pnpm add @fullhaus/stylelint-config --save-devUsage
Extend your config by adding @fullhaus/stylelint-config to the extends field of your stylelint config.
Depending on your stylelint config file format, it might look something like this:
ESM (stylelint.config.mjs)
/** @type {import('stylelint').Config} */
export default {
extends: [
'@fullhaus/stylelint-config',
],
};
JSON (.stylelintrc.json)
{
"extends": [
"@fullhaus/stylelint-config"
]
}