mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
21 lines
640 B
JavaScript
21 lines
640 B
JavaScript
import { stylelintConfig } from '@pengzhanbo/stylelint-config'
|
|
|
|
export default stylelintConfig({
|
|
rules: {
|
|
'selector-pseudo-element-no-unknown': [true, {
|
|
ignorePseudoElements: ['input-placeholder'],
|
|
}],
|
|
'no-descending-specificity': null,
|
|
'custom-property-empty-line-before': null,
|
|
'property-no-vendor-prefix': null,
|
|
'selector-no-vendor-prefix': null,
|
|
'property-no-unknown': [true, {
|
|
ignoreProperties: ['r', 'font-named-instance'],
|
|
}],
|
|
'declaration-block-no-redundant-longhand-properties': [true, {
|
|
ignoreShorthands: ['inset'],
|
|
}],
|
|
'media-feature-range-notation': null,
|
|
},
|
|
})
|