2019-04-09 15:20:17 +02:00
|
|
|
module.exports = {
|
2023-03-08 15:18:26 +01:00
|
|
|
extends: ["stylelint-config-standard"],
|
2022-12-12 12:24:14 +01:00
|
|
|
customSyntax: require("postcss-scss"),
|
|
|
|
plugins: ["stylelint-scss"],
|
|
|
|
rules: {
|
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,
|
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,
|
2022-12-12 12:24:14 +01:00
|
|
|
"scss/at-rule-no-unknown": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
// https://github.com/vector-im/element-web/issues/10544
|
|
|
|
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-12-12 12:24:14 +01:00
|
|
|
"selector-nested-pattern": "^((&[ :.\\[,])|([^&]))",
|
2022-07-15 15:53:23 +02:00
|
|
|
// Disable some defaults
|
|
|
|
"selector-class-pattern": null,
|
|
|
|
"custom-property-pattern": null,
|
|
|
|
"selector-id-pattern": null,
|
|
|
|
"keyframes-name-pattern": 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,
|
2023-05-16 17:41:04 +02:00
|
|
|
"declaration-block-no-duplicate-properties": [
|
|
|
|
true,
|
|
|
|
// useful for fallbacks
|
|
|
|
{ ignore: ["consecutive-duplicates-with-different-values"] },
|
|
|
|
],
|
2022-07-15 15:53:23 +02:00
|
|
|
"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,
|
2023-04-06 13:06:59 +02:00
|
|
|
"media-feature-range-notation": null,
|
2022-07-15 15:53:23 +02:00
|
|
|
},
|
2022-12-12 12:24:14 +01:00
|
|
|
};
|