tdesign-vue-next-starter/stylelint.config.js
悠静萝莉 b9095ce939
feat: 将整体代码规范为ESM (#680)
* chore: update deps

mockjs: CVE-2023-26158
vite: CVE-2024-23331

* chore: update deps

* chore: explicit definition type

* chore: update echarts

* feat: change the overall ESM
2024-02-13 18:55:31 +08:00

29 lines
717 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default {
defaultSeverity: 'error',
extends: ['stylelint-config-standard'],
rules: {
'no-descending-specificity': null,
'import-notation': 'string',
'no-empty-source': null,
'custom-property-pattern': null,
'selector-class-pattern': null,
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: ['deep'],
},
],
'media-query-no-invalid': null, // 官方表示此规则应当仅对于原生CSS启用对于预处理器Less不应启用
},
overrides: [
{
files: ['**/*.html', '**/*.vue'],
customSyntax: 'postcss-html',
},
{
files: ['**/*.less'],
customSyntax: 'postcss-less',
},
],
};