Skip to content

Commit 3dfa5fd

Browse files
authored
Add @css-modules-kit/stylelint-plugin/config (#148)
* chore: update stylelint * chore: update example * feat: add `@css-modules-kit/stylelint-plugin/config` * chore: update stylelint-plugin README * chore: add changelog
1 parent 2fde8ec commit 3dfa5fd

File tree

8 files changed

+75
-16
lines changed

8 files changed

+75
-16
lines changed

.changeset/gentle-crews-bow.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@css-modules-kit/stylelint-plugin': minor
3+
---
4+
5+
feat: add `@css-modules-kit/stylelint-plugin/config`

example/src/b.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
.b_1 { color: red; }
1+
.b_1 { color: red; composes: b_2; }
22
@value b_2: red;

example/stylelint.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/** @type {import('stylelint').Config} */
22
export default {
3-
plugins: ['@css-modules-kit/stylelint-plugin'],
3+
extends: ['@css-modules-kit/stylelint-plugin/config'],
44
rules: {
5-
'css-modules-kit/no-unused-class-names': true,
6-
'css-modules-kit/no-missing-component-file': true,
5+
'at-rule-no-unknown': true,
6+
'property-no-unknown': true,
77
},
88
};

package-lock.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"eslint": "^9.22.0",
4444
"npm-run-all2": "^7.0.2",
4545
"prettier": "^3.5.3",
46-
"stylelint": "^16.15.0",
46+
"stylelint": "^16.17.0",
4747
"typescript": "^5.8.2",
4848
"vitest": "^3.0.8"
4949
}

packages/stylelint-plugin/README.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,7 @@ npm i -D @css-modules-kit/stylelint-plugin
1414
// stylelint.config.js
1515
/** @type {import('stylelint').Config} */
1616
export default {
17-
plugins: ['@css-modules-kit/stylelint-plugin'],
18-
rules: {
19-
'css-modules-kit/no-unused-class-names': true,
20-
'css-modules-kit/no-missing-component-file': true,
21-
},
17+
extends: ['@css-modules-kit/stylelint-plugin/config'],
2218
};
2319
```
2420

packages/stylelint-plugin/package.json

+14-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,20 @@
1212
"author": "mizdra <[email protected]>",
1313
"license": "MIT",
1414
"private": false,
15-
"main": "./dist/index.js",
15+
"exports": {
16+
".": {
17+
"import": {
18+
"types": "./dist/index.d.ts",
19+
"default": "./dist/index.js"
20+
}
21+
},
22+
"./config": {
23+
"import": {
24+
"types": "./dist/config.d.ts",
25+
"default": "./dist/config.js"
26+
}
27+
}
28+
},
1629
"scripts": {
1730
"build": "tsc -b tsconfig.build.json"
1831
},
+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import type { Config } from 'stylelint';
2+
3+
const config: Config = {
4+
plugins: ['@css-modules-kit/stylelint-plugin'],
5+
languageOptions: {
6+
syntax: {
7+
atRules: {
8+
value: {
9+
// Example:
10+
// - `@value a: #123;`
11+
// - `@value empty:;`
12+
// - `@value withoutSemicolon #123;`
13+
// - `@value a from './test.module.css';`
14+
// - `@value a, b from './test.module.css';`
15+
// - `@value a as aliased_a from './test.module.css';`
16+
//
17+
// CSS Modules Kit does not support the following for implementation simplicity:
18+
// - `@value (a, b) from '...';`
19+
// - `@value a from moduleName;`
20+
//
21+
// ref: https://github.com/css-modules/postcss-icss-values/blob/acdf34a62cc2537a9507b1e9fd34db486e5cb0f8/test/test.js
22+
prelude:
23+
'<custom-ident> :? <declaration-value>? | [ [ <custom-ident> [ as <custom-ident> ]? ]# from <string> ]',
24+
},
25+
},
26+
properties: {
27+
// Example:
28+
// - `composes: a;`
29+
// - `composes: a from './test.module.css';`
30+
// - `composes: a, b from './test.module.css';`
31+
// - `composes: a b from './test.module.css';`
32+
// - `composes: global(a) from './test.module.css';`
33+
//
34+
// ref: https://github.com/css-modules/postcss-modules-extract-imports/blob/16f9c570e517cf3558b88cf96dcadf794230965a/src/index.js
35+
composes: '[ [ <custom-ident> | global(<custom-ident>) ] ,? ]+ [ from <string> ]?',
36+
},
37+
},
38+
},
39+
rules: {
40+
'css-modules-kit/no-unused-class-names': true,
41+
'css-modules-kit/no-missing-component-file': true,
42+
},
43+
};
44+
45+
export = config;

0 commit comments

Comments
 (0)