mirror of
https://github.com/WenPai-org/wpmind.git
synced 2025-08-03 02:48:41 +08:00
25 lines
910 B
JavaScript
25 lines
910 B
JavaScript
module.exports = {
|
|
extends: '@wordpress/stylelint-config/scss',
|
|
rules: {
|
|
'at-rule-empty-line-before': null,
|
|
'at-rule-no-unknown': null,
|
|
'comment-empty-line-before': null,
|
|
'font-weight-notation': null,
|
|
'max-line-length': null,
|
|
'no-descending-specificity': null,
|
|
'rule-empty-line-before': null,
|
|
'selector-class-pattern': null,
|
|
'value-keyword-case': null,
|
|
'scss/operator-no-unspaced': null,
|
|
'scss/selector-no-redundant-nesting-selector': null,
|
|
'scss/at-import-partial-extension': null,
|
|
'scss/no-global-function-names': null,
|
|
'scss/comment-no-empty': null,
|
|
'scss/at-extend-no-missing-placeholder': null,
|
|
'scss/operator-no-newline-after': null,
|
|
'scss/at-if-closing-brace-newline-after': null,
|
|
'scss/at-else-empty-line-before': null,
|
|
'scss/at-if-closing-brace-space-after': null,
|
|
'no-invalid-position-at-import-rule': null,
|
|
},
|
|
};
|