vuepress-theme-plume/stylelint.config.js
2025-02-01 00:51:30 +08:00

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,
},
})