aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/.stylelintrc.js
blob: 7adf8f26290db1f72ce471fdc814ddfe24fc81bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
  extends: 'stylelint-config-recommended-scss',
  // Simplified for only :export to TypeScript based on
  // https://github.com/pascalduez/stylelint-config-css-modules/blob/d792a6ac7d2bce8239edccbc5a72e0616f22d696/index.js
  rules: {
    'selector-pseudo-class-no-unknown': [
      true,
      {
        ignorePseudoClasses: [
          'export',
        ],
      },
    ],
  },
};