| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 | module.exports = {  root: true,  defaultSeverity: 'warning',  extends: ['stylelint-config-recommended-scss', 'stylelint-config-recess-order', 'stylelint-config-standard-scss'],  plugins: ['stylelint-declaration-block-no-ignored-properties'],  rules: {    'scss/dollar-variable-pattern': null,    'selector-class-pattern': null,    'order/properties-alphabetical-order': null,    // 嵌套过多,建议关闭此规则    'no-descending-specificity': null,    'selector-max-id': 1,    'selector-pseudo-class-no-unknown': [      true,      {        ignorePseudoClasses: ['deep', 'global']      }    ],    'at-rule-no-unknown': [      true,      {        ignoreAtRules: [          'tailwind',          'apply',          'variants',          'responsive',          'screen',          'function',          'if',          'each',          'extend',          'include',          'mixin',          'at-root'        ]      }    ],    'rule-empty-line-before': [      'always',      {        ignore: ['after-comment', 'first-nested']      }    ],    'color-function-notation': 'legacy',    // 函数 url 链接不允许 shceme relative    'function-url-no-scheme-relative': true,    // 可组合成一个属性的写法,不允许拆开书写    'declaration-block-no-redundant-longhand-properties': true,    // 选择器最大深度    'selector-max-compound-selectors': 12,    // 最多2个类型选择器    'selector-max-type': 2,    // 不允许未知的动画    'no-unknown-animations': true,    // 在字体名称必须使用引号的地方使用引号,其他地方不能使用    'font-family-name-quotes': 'always-unless-keyword',    // url 函数内部必须有引号    'function-url-quotes': 'always',    'value-keyword-case': ['lower', { ignoreKeywords: ['optimizeLegibility', 'currentColor'] }],    'max-nesting-depth': [12, { ignore: ['blockless-at-rules', 'pseudo-classes'] }],    'selector-no-qualifying-type': [true, { ignore: ['attribute', 'class', 'id'] }]  },  ignoreFiles: ['**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx'],  overrides: [    {      files: ['*.vue', '**/*.vue'],      extends: [        'stylelint-config-recess-order',        'stylelint-config-standard-scss',        'stylelint-config-recommended-vue/scss'      ],      rules: {        'keyframes-name-pattern': null,        'declaration-property-value-no-unknown': [true, { ignoreProperties: { '/.+/': '/(v-bind(.*))|($.*)/' } }],        'selector-pseudo-element-no-unknown': true      }    }  ]};
 |