Bug 31528: Replace scss-lint configuration with one for stylelint
[koha.git] / .stylelintrc.json
1 {
2   "extends": "stylelint-config-standard-scss",
3   "plugins": [
4     "stylelint-order"
5   ],
6   "rules": {
7       "alpha-value-notation": null,
8       "color-hex-case": "upper",
9       "color-hex-length": null,
10       "color-named": "never",
11       "declaration-colon-space-after": "always",
12       "declaration-no-important": true,
13       "function-parentheses-space-inside": "always",
14       "indentation": 4,
15       "keyframes-name-pattern": null,
16       "max-line-length": null,
17       "media-feature-parentheses-space-inside": "always",
18       "no-descending-specificity": null,
19       "no-duplicate-selectors": true,
20       "number-leading-zero": "never",
21       "order/properties-alphabetical-order": true,
22       "selector-class-pattern": null,
23       "selector-id-pattern": null,
24       "selector-no-qualifying-type": null,
25       "selector-pseudo-class-parentheses-space-inside": "always",
26       "selector-pseudo-element-colon-notation": "double",
27       "shorthand-property-no-redundant-values": null,
28       "font-family-no-missing-generic-family-keyword": null
29   }
30 }