mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
36 lines
776 B
JavaScript
36 lines
776 B
JavaScript
module.exports = {
|
|
extends: ["stylelint-config-standard", "stylelint-config-recess-order"],
|
|
rules: {
|
|
"at-rule-no-unknown": [
|
|
true,
|
|
{
|
|
ignoreAtRules: [
|
|
"mixin",
|
|
"extend",
|
|
"content",
|
|
"include",
|
|
"for",
|
|
"function",
|
|
"return",
|
|
],
|
|
},
|
|
],
|
|
"selector-pseudo-element-no-unknown": [
|
|
true,
|
|
{
|
|
ignorePseudoElements: ["v-deep"],
|
|
},
|
|
],
|
|
"selector-pseudo-class-no-unknown": [
|
|
true,
|
|
{
|
|
ignorePseudoClasses: ["export"],
|
|
},
|
|
],
|
|
indentation: 2,
|
|
"no-descending-specificity": null,
|
|
"declaration-colon-newline-after": null,
|
|
},
|
|
ignoreFiles: ["**/*.js", "dist/*.*", "node_modules", "**/*.ts", "**/*.md"],
|
|
};
|