2019-04-09 15:20:17 +02:00
|
|
|
module.exports = {
|
|
|
|
"extends": "stylelint-config-standard",
|
2022-07-15 15:53:23 +02:00
|
|
|
customSyntax: require('postcss-scss'),
|
2019-07-09 19:35:57 +02:00
|
|
|
"plugins": [
|
|
|
|
"stylelint-scss",
|
|
|
|
],
|
2019-04-09 15:20:17 +02:00
|
|
|
"rules": {
|
2021-04-02 09:03:28 +02:00
|
|
|
"color-hex-case": null,
|
2019-04-09 15:20:17 +02:00
|
|
|
"indentation": 4,
|
2019-04-09 15:30:51 +02:00
|
|
|
"comment-empty-line-before": null,
|
2019-04-09 16:03:13 +02:00
|
|
|
"declaration-empty-line-before": null,
|
|
|
|
"length-zero-no-unit": null,
|
|
|
|
"rule-empty-line-before": null,
|
|
|
|
"color-hex-length": null,
|
2021-10-26 09:23:23 +02:00
|
|
|
"max-empty-lines": 1,
|
|
|
|
"no-eol-whitespace": true,
|
2019-04-09 16:03:13 +02:00
|
|
|
"number-no-trailing-zeros": null,
|
|
|
|
"number-leading-zero": null,
|
|
|
|
"selector-list-comma-newline-after": null,
|
2019-07-09 19:35:57 +02:00
|
|
|
"at-rule-no-unknown": null,
|
2019-11-08 17:10:51 +01:00
|
|
|
"no-descending-specificity": null,
|
2021-08-24 10:09:28 +02:00
|
|
|
"no-empty-first-line": true,
|
2019-08-13 16:40:03 +02:00
|
|
|
"scss/at-rule-no-unknown": [true, {
|
2020-08-03 17:02:26 +02:00
|
|
|
// https://github.com/vector-im/element-web/issues/10544
|
2019-08-13 16:40:03 +02:00
|
|
|
"ignoreAtRules": ["define-mixin"],
|
|
|
|
}],
|
2022-03-23 19:23:23 +01:00
|
|
|
// Disable `&_kind`-style selectors while our unused CSS approach is "Find & Replace All"
|
|
|
|
// rather than a CI thing. Shorthand selectors are harder to detect when searching for a
|
|
|
|
// class name. This regex is trying to *allow* anything except `&words`, such as `&::before`,
|
|
|
|
// `&.mx_Class`, etc.
|
2022-07-15 15:53:23 +02:00
|
|
|
"selector-nested-pattern": "^((&[ :.\\\[,])|([^&]))",
|
|
|
|
"declaration-colon-space-after": "always-single-line",
|
|
|
|
// Disable some defaults
|
|
|
|
"selector-class-pattern": null,
|
|
|
|
"custom-property-pattern": null,
|
|
|
|
"selector-id-pattern": null,
|
|
|
|
"keyframes-name-pattern": null,
|
|
|
|
"string-quotes": null,
|
|
|
|
"alpha-value-notation": null,
|
|
|
|
"color-function-notation": null,
|
|
|
|
"selector-not-notation": null,
|
|
|
|
"import-notation": null,
|
|
|
|
"value-keyword-case": null,
|
|
|
|
"declaration-block-no-redundant-longhand-properties": null,
|
|
|
|
"shorthand-property-no-redundant-values": null,
|
|
|
|
"property-no-vendor-prefix": null,
|
|
|
|
"value-no-vendor-prefix": null,
|
|
|
|
"selector-no-vendor-prefix": null,
|
|
|
|
"media-feature-name-no-vendor-prefix": null,
|
|
|
|
"number-max-precision": null,
|
2022-07-27 15:39:29 +02:00
|
|
|
"no-invalid-double-slash-comments": true,
|
2022-07-15 15:53:23 +02:00
|
|
|
},
|
2019-04-09 15:20:17 +02:00
|
|
|
}
|