Common Brightspace stylelint configs.
Install the stylelint-config
and stylelint
.
npm i @brightspace-ui/stylelint-config
npm i stylelint
Simply specify the extends
property in the .stylelintrc.json
file as shown below. The default config contains rules to avoid errors, and also to enforce consistent formatting.
{
"extends": "@brightspace-ui/stylelint-config"
}
Then run stylelint
, for example by defining a script in your package.json
.
"scripts": {
"lint:style": "stylelint \"**/*.js\""
},
Contributions are welcome, please submit a pull request!
This repository is configured with EditorConfig rules and contributions should make use of them.
This repo is configured to use semantic-release
. Commits prefixed with fix:
and feat:
will trigger patch and minor releases when merged to main
.
To learn how to create major releases and release from maintenance branches, refer to the semantic-release GitHub Action documentation.