mirror of
https://gitgud.io/Vrelnir/degrees-of-lewdity.git
synced 2026-09-15 06:04:27 +08:00
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
module.exports = {
|
|
plugins: ["stylelint-no-unsupported-browser-features"],
|
|
extends: ["stylelint-config-standard", "stylelint-config-property-sort-order-smacss", "stylelint-prettier/recommended"],
|
|
rules: {
|
|
"plugin/no-unsupported-browser-features": [
|
|
true,
|
|
{
|
|
severity: "warning",
|
|
// To prevent stylelint from removing -webkit-background-clip
|
|
ignore: ["background-clip"],
|
|
},
|
|
],
|
|
|
|
// Class and ID patterns disabled for now due to the large amounts of classes and IDs that break this rule
|
|
"selector-class-pattern": null,
|
|
"selector-id-pattern": null,
|
|
|
|
/* Because we don't use PostCSS, these errors seem redundant. */
|
|
"media-feature-name-no-vendor-prefix": null,
|
|
"property-no-vendor-prefix": null,
|
|
"value-no-vendor-prefix": null,
|
|
|
|
/* Stylistic errors that aren't useful. */
|
|
"order/properties-order": null,
|
|
"comment-empty-line-before": null,
|
|
|
|
// Modified kebab-case for numbered CSS vars
|
|
"custom-property-pattern": [
|
|
"^([a-z0-9]*)(-[a-z0-9]+)*$",
|
|
{
|
|
message: "Expected custom property name to be kebab-case",
|
|
},
|
|
],
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ["modules/css/base.css", "modules/css/clothing-shop-v2.css"],
|
|
rules: {
|
|
"font-family-no-missing-generic-family-keyword": null,
|
|
"no-descending-specificity": null,
|
|
},
|
|
},
|
|
{
|
|
files: ["modules/css/base.css"],
|
|
rules: {
|
|
"selector-type-no-unknown": null,
|
|
},
|
|
},
|
|
],
|
|
};
|