docusaurus/packages/stylelint-copyright
2022-05-18 12:48:28 +08:00
..
src refactor(stylelint-copyright): migrate to TS (#7441) 2022-05-17 22:13:47 +08:00
package.json refactor(stylelint-copyright): migrate to TS (#7441) 2022-05-17 22:13:47 +08:00
README.md feat(stylelint-copyright): autofix, stricter config (#6374) 2022-01-16 11:34:10 +08:00
tsconfig.json refactor: make each tsconfig explicitly declare module and include/exclude (#7443) 2022-05-18 12:48:28 +08:00

stylelint-copyright

Stylelint plugin to check CSS files for a copyright header.

/*
 * Copyright ...
 * ...
 */

Usage

// .stylelintrc
{
  "plugins": ["stylelint-copyright"],
  "rules": {
    "docusaurus/copyright-header": [true, {"header": "\n * Copyright"}]
  }
}