1
1
mirror of https://github.com/primer/css.git synced 2024-11-23 03:10:10 +03:00

Moving stylelint plugin to script folder

This commit is contained in:
Jon Rohan 2021-04-01 08:46:29 -07:00
parent e91ad70efe
commit ce47dab85c
No known key found for this signature in database
GPG Key ID: B0BBE304A9A0AECB
3 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@ We have several checks and tools in place to help us plan, track, and catch both
[This file][deprecations.js] is where we document all of our current and _planned_ CSS selector and SCSS variable deprecations (removals), and is used to generate [deprecation data](../tools/deprecations) for other tools.
### `primer-css/TODO`
[This stylelint rule][lib/stylelint-todo.js] looks for comments in the form:
[This stylelint rule][script/stylelint-todo.js] looks for comments in the form:
```scss
// TODO@<version>: <message>
@ -158,4 +158,4 @@ To understand what choice to make, you'll need to understand semver and know if
[semantic versioning]: https://semver.org
[script/test-deprecations.js]: https://github.com/primer/css/tree/main/script/test-deprecations.js
[deprecations.js]: https://github.com/primer/css/tree/main/deprecations.js
[lib/stylelint-todo.js]: https://github.com/primer/css/tree/main/lib/stylelint-todo.js
[script/stylelint-todo.js]: https://github.com/primer/css/tree/main/script/stylelint-todo.js

View File

@ -2,7 +2,7 @@ const currentVersion = process.env.PRIMER_VERSION || require('./package.json').v
module.exports = {
extends: ['stylelint-config-primer'],
plugins: ['stylelint-scss', './lib/stylelint-todo'],
plugins: ['stylelint-scss', './script/stylelint-todo'],
syntax: 'scss',
rules: {
'scss/dollar-variable-default': [true, {ignore: 'local'}],