|
| 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