mirror of
https://github.com/lobehub/lobehub
synced 2026-04-21 09:37:28 +00:00
14 lines
352 B
JavaScript
14 lines
352 B
JavaScript
|
|
import { stylelint } from '@lobehub/lint';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
...stylelint,
|
||
|
|
rules: {
|
||
|
|
...stylelint.rules,
|
||
|
|
// Temporarily disabled for gradual migration
|
||
|
|
'declaration-property-value-keyword-no-deprecated': null,
|
||
|
|
'declaration-property-value-no-unknown': null,
|
||
|
|
'selector-class-pattern': null,
|
||
|
|
'selector-id-pattern': null,
|
||
|
|
},
|
||
|
|
};
|