1 Star 0 Fork 5

keepwithme/vue-tony-admin

forked from DA浪/vue-tony-admin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stylelint.config.js 6.40 KB
一键复制 编辑 原始数据 按行查看 历史
DA浪 提交于 2022-07-21 18:32 . chore: 更新相关依赖包
module.exports = {
extends: [
'stylelint-config-standard-scss',
'stylelint-config-recommended-vue/scss',
'stylelint-config-prettier',
'css-properties-sorting',
],
overrides: [
{
files: ['*.vue', '**/*.vue'],
customSyntax: 'postcss-html',
},
{
files: ['*.scss', '**/*.scss'],
customSyntax: 'postcss-scss',
},
],
plugins: ['stylelint-scss', 'stylelint-order'],
// rule detail: https://stylelint.io/user-guide/rules/
// 规则详情: http://stylelint.cn/user-guide/rules/
rules: {
'scss/at-import-partial-extension': 'always',
'scss/at-mixin-argumentless-call-parentheses': 'always',
'scss/at-mixin-pattern': null,
'color-hex-case': 'lower',
'color-no-invalid-hex': true,
'font-family-name-quotes': 'always-unless-keyword',
'function-url-quotes': 'always',
'number-leading-zero': 'always',
'number-no-trailing-zeros': true,
'string-quotes': 'single',
'length-zero-no-unit': true,
'value-keyword-case': 'lower',
'shorthand-property-no-redundant-values': true,
'keyframe-declaration-no-important': true,
'declaration-colon-space-after': 'always',
'declaration-colon-space-before': 'never',
'custom-property-empty-line-before': 'never',
'selector-class-pattern': '^[a-z-]+([a-z0-9]?|[a-z0-9\\-\\_]*[a-z0-9])$',
'selector-id-pattern': '^[a-z]+([a-z0-9]?|[a-z0-9\\-\\_]*[a-z0-9])$',
'no-empty-source': null,
'no-descending-specificity': true,
'keyframes-name-pattern': null,
'color-function-notation': 'legacy',
'alpha-value-notation': 'number',
'unit-no-unknown': true,
indentation: 2,
'max-nesting-depth': 4,
'max-empty-lines': 1,
'no-duplicate-selectors': true,
'no-eol-whitespace': true,
'no-invalid-double-slash-comments': null,
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: ['global', 'deep', 'slotted'],
},
],
'selector-pseudo-element-no-unknown': [
true,
{
ignorePseudoElements: ['v-deep'],
},
],
'at-rule-no-unknown': [
true,
{
ignoreAtRules: [
'use',
'forward',
'use',
'import',
'mixin',
'include',
'function',
'extend',
'at',
'error',
'warn',
'debug',
'if',
'each',
'for',
'while',
'media',
'supports',
],
},
],
'rule-empty-line-before': [
'always',
{
ignore: ['after-comment', 'first-nested'],
},
],
// 'order/order': [
// [
// // 'at-rules',
// 'dollar-variables',
// 'custom-properties',
// // 'declarations',
// // {
// // type: 'at-rule',
// // name: 'supports',
// // },
// // {
// // type: 'at-rule',
// // name: 'media',
// // },
// // 'rules',
// ],
// { severity: 'warning' },
// ],
'order/properties-order': [
'position',
'top',
'right',
'bottom',
'left',
'z-index',
'display',
'justify-content',
'align-items',
'float',
'clear',
'width',
'height',
'max-width',
'max-height',
'min-width',
'min-height',
'padding',
'padding-top',
'padding-right',
'padding-bottom',
'padding-left',
'margin',
'margin-top',
'margin-right',
'margin-bottom',
'margin-left',
'margin-collapse',
'margin-top-collapse',
'margin-right-collapse',
'margin-bottom-collapse',
'margin-left-collapse',
'overflow',
'overflow-x',
'overflow-y',
'clip',
'font',
'font-family',
'font-size',
'font-smoothing',
'osx-font-smoothing',
'font-style',
'font-weight',
'hyphens',
'src',
'line-height',
'letter-spacing',
'word-spacing',
'color',
'text-align',
'text-decoration',
'text-indent',
'text-overflow',
'text-rendering',
'text-size-adjust',
'text-shadow',
'text-transform',
'word-break',
'word-wrap',
'white-space',
'vertical-align',
'list-style',
'list-style-type',
'list-style-position',
'list-style-image',
'pointer-events',
'cursor',
'background',
'background-attachment',
'background-color',
'background-image',
'background-position',
'background-repeat',
'background-size',
'border',
'border-collapse',
'border-top',
'border-right',
'border-bottom',
'border-left',
'border-color',
'border-image',
'border-top-color',
'border-right-color',
'border-bottom-color',
'border-left-color',
'border-spacing',
'border-style',
'border-top-style',
'border-right-style',
'border-bottom-style',
'border-left-style',
'border-width',
'border-top-width',
'border-right-width',
'border-bottom-width',
'border-left-width',
'border-radius',
'border-top-right-radius',
'border-bottom-right-radius',
'border-bottom-left-radius',
'border-top-left-radius',
'border-radius-topright',
'border-radius-bottomright',
'border-radius-bottomleft',
'border-radius-topleft',
'content',
'quotes',
'outline',
'outline-offset',
'opacity',
'filter',
'visibility',
'size',
'zoom',
'transform',
'box-align',
'box-flex',
'box-orient',
'box-pack',
'box-shadow',
'box-sizing',
'table-layout',
'animation',
'animation-delay',
'animation-duration',
'animation-iteration-count',
'animation-name',
'animation-play-state',
'animation-timing-function',
'animation-fill-mode',
'transition',
'transition-delay',
'transition-duration',
'transition-property',
'transition-timing-function',
'background-clip',
'backface-visibility',
'resize',
'appearance',
'user-select',
'interpolation-mode',
'direction',
'marks',
'page',
'set-link-source',
'unicode-bidi',
'speak',
],
},
ignoreFiles: ['**/*.js', '**/*.ts', '**/*.jsx', '**/*.tsx', '**/*.html'],
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/keepwithme/vue-tony-admin.git
[email protected]:keepwithme/vue-tony-admin.git
keepwithme
vue-tony-admin
vue-tony-admin
main

搜索帮助