Files
Web_Template_Vue3_Dev/.stylelintrc.js
MomoWen 3e2da1115e
Some checks failed
Call HTTPS API / build (push) Has been cancelled
初始化拉取,原文件名:admin-plus-webpack5
2025-12-26 20:43:10 +08:00

19 lines
569 B
JavaScript

module.exports = {
extends: [
'stylelint-config-recommended-scss',
'stylelint-config-recommended-vue',
'stylelint-config-recess-order',
],
rules: {
'no-empty-source': null,
'at-rule-no-unknown': null,
'property-no-unknown': null,
'function-no-unknown': null,
'selector-class-pattern': null,
'no-descending-specificity': null,
'scss/no-global-function-names': null,
'selector-pseudo-class-no-unknown': null,
},
ignoreFiles: ['dist/**/*', 'public/index.html'],
}