build: Enable use of stylelint-config-wikimedia and make pass
[lhc/web/wiklou.git] / .stylelintrc
1 {
2 "extends": "stylelint-config-wikimedia",
3 "rules": {
4 "declaration-block-no-duplicate-properties": null,
5 "declaration-no-important": null,
6
7 "indentation": null,
8
9 "no-descending-specificity": null,
10 "no-duplicate-selectors": null,
11
12 "number-leading-zero": null,
13
14 "selector-list-comma-newline-after": null,
15 "selector-no-id": null,
16 "selector-pseudo-class-parentheses-space-inside": null,
17 "selector-pseudo-element-colon-notation": null,
18
19 "string-quotes": null,
20
21 "value-keyword-case": null
22 }
23 }