123456789101112131415161718192021222324 |
- module.exports = {
- extends: ['stylelint-config-recess-order', 'stylelint-config-prettier'],
- overrides: [
- {
- files: ['.js', '.jsx', '.ts'].flatMap((ext) => [`*${ext}`, `**/*${ext}`]),
- customSyntax: '@stylelint/postcss-css-in-js',
- },
- {
- files: ['.vue', '.htm', '.html'].flatMap((ext) => [
- `*${ext}`,
- `**/*${ext}`,
- ]),
- customSyntax: 'postcss-html',
- },
- {
- files: ['.md', '.markdown'].flatMap((ext) => [`*${ext}`, `**/*${ext}`]),
- customSyntax: 'postcss-markdown',
- },
- {
- files: ['**/*.scss'],
- customSyntax: 'postcss-scss',
- },
- ],
- }
|