10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
const { defineConfig } = require('@coze-arch/stylelint-config');
|
|
|
|
module.exports = defineConfig({
|
|
extends: [],
|
|
rules: {
|
|
'rule-empty-line-before': null,
|
|
'no-descending-specificity': null,
|
|
},
|
|
});
|