mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
14 lines
393 B
JavaScript
14 lines
393 B
JavaScript
import { stylelintConfig } from '@pengzhanbo/stylelint-config'
|
|
|
|
export default stylelintConfig({
|
|
rules: {
|
|
'custom-property-empty-line-before': null,
|
|
'property-no-vendor-prefix': null,
|
|
'selector-no-vendor-prefix': null,
|
|
'declaration-block-no-redundant-longhand-properties': [true, {
|
|
ignoreShorthands: ['inset'],
|
|
}],
|
|
'media-feature-range-notation': null,
|
|
},
|
|
})
|