mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-02 16:29:47 +02:00
* fix(v2): improve stylelint copyright header rule * Whitelist stylelint-copyright from Jest
22 lines
264 B
Markdown
22 lines
264 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
|
|
}
|
|
}
|
|
```
|