| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 | 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',          'use',        ],      },    ],    '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': 10,    // 最多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': [10, { ignore: ['blockless-at-rules', 'pseudo-classes'] }],    'selector-no-qualifying-type': [true, { ignore: ['attribute', 'class', 'id'] }],    'font-family-no-missing-generic-family-keyword': [      true,      {        ignoreFontFamilies: ['League'],      },    ],  },  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,      },    },  ],};
 |