docusaurus/packages/stylelint-copyright/README.md
Joshua Chen 14bec7cf11
feat(stylelint-copyright): autofix, stricter config (#6374)
* feat(stylelint-copyright): autofix, stricter config

* revert TS

* oops
2022-01-16 11:34:10 +08:00

22 lines
298 B
Markdown

# `stylelint-copyright`
Stylelint plugin to check CSS files for a copyright header.
```css
/*
* Copyright ...
* ...
*/
```
## Usage
```json
// .stylelintrc
{
"plugins": ["stylelint-copyright"],
"rules": {
"docusaurus/copyright-header": [true, {"header": "\n * Copyright"}]
}
}
```