| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | module.exports = {  defaultSeverity: 'warning',  extends: 'stylelint-config-standard',  plugins: ['stylelint-declaration-block-no-ignored-properties', 'stylelint-order'],  rules: {    'plugin/declaration-block-no-ignored-properties': true,    // 各分类属性顺序    'order/order': ['at-rules', 'custom-properties', 'dollar-variables', 'declarations', 'rules'],    // 指定2个空格    indentation: 2,    // 多个选择器样式之间允许有空行    'rule-empty-line-before': null,    // 样式块中不允许重复的属性    'declaration-block-no-duplicate-properties': true,    // 指定颜色函数使用传统符号隔开    'color-function-notation': 'legacy',    // 函数 url 链接不允许 shceme relative    'function-url-no-scheme-relative': true,    // 可组合成一个属性的写法,不允许拆开书写    'declaration-block-no-redundant-longhand-properties': true,    // 选择器最大深度为4    'selector-max-compound-selectors': 6,    // 限制 id选择器的数目在一个选择器中    'selector-max-id': 1,    // 最多2个类型选择器    'selector-max-type': 2,    // 不允许未知的动画    'no-unknown-animations': true,    // 在字体名称必须使用引号的地方使用引号,其他地方不能使用    'font-family-name-quotes': 'always-where-required',    // url 函数内部必须有引号    'function-url-quotes': 'always',    // 指定字符串引号为单引号    'string-quotes': 'single',    // 在规则的分号之前不允许有空格    'at-rule-semicolon-space-before': 'never',    // 首行不允许空行    'no-empty-first-line': true,    // 不允许使用 unicode 作为顺序标记    'unicode-bom': 'never',    'at-rule-no-unknown': null  }};
 |