wireguard-dashboard-admin/stylelint.config.js

88 lines
1.9 KiB
JavaScript
Raw Normal View History

2024-03-09 16:27:52 +08:00
// @ts-check
/** @type {import("stylelint").Config} */
export default {
2023-05-12 13:27:40 +08:00
extends: [
"stylelint-config-standard",
"stylelint-config-html/vue",
"stylelint-config-recess-order"
],
2024-03-09 16:27:52 +08:00
plugins: ["stylelint-scss", "stylelint-order", "stylelint-prettier"],
2023-05-12 13:27:40 +08:00
overrides: [
{
files: ["**/*.(css|html|vue)"],
customSyntax: "postcss-html"
},
{
files: ["*.scss", "**/*.scss"],
customSyntax: "postcss-scss",
extends: [
"stylelint-config-standard-scss",
"stylelint-config-recommended-vue/scss"
]
}
],
2021-10-16 16:16:58 +08:00
rules: {
2024-03-09 16:27:52 +08:00
"prettier/prettier": true,
2022-02-07 16:20:22 +08:00
"selector-class-pattern": null,
2023-05-12 13:27:40 +08:00
"no-descending-specificity": null,
"scss/dollar-variable-pattern": null,
2021-10-16 16:16:58 +08:00
"selector-pseudo-class-no-unknown": [
true,
{
2023-05-12 13:27:40 +08:00
ignorePseudoClasses: ["deep", "global"]
2021-10-16 16:16:58 +08:00
}
],
"selector-pseudo-element-no-unknown": [
true,
{
2023-05-12 13:27:40 +08:00
ignorePseudoElements: ["v-deep", "v-global", "v-slotted"]
2021-10-16 16:16:58 +08:00
}
],
"at-rule-no-unknown": [
true,
{
ignoreAtRules: [
"tailwind",
"apply",
"variants",
"responsive",
"screen",
"function",
"if",
"each",
"include",
2023-05-12 13:27:40 +08:00
"mixin",
"use"
2021-10-16 16:16:58 +08:00
]
}
],
"rule-empty-line-before": [
"always",
{
ignore: ["after-comment", "first-nested"]
}
],
"unit-no-unknown": [true, { ignoreUnits: ["rpx"] }],
"order/order": [
[
"dollar-variables",
"custom-properties",
"at-rules",
"declarations",
{
type: "at-rule",
name: "supports"
},
{
type: "at-rule",
name: "media"
},
"rules"
],
{ severity: "warning" }
]
},
2024-03-09 16:27:52 +08:00
ignoreFiles: ["**/*.js", "**/*.ts", "**/*.jsx", "**/*.tsx", "report.html"]
2021-10-16 16:16:58 +08:00
};