From a1a34cb96eaefd9b5e7088fc5dcdd39d22c8f273 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com> Date: Wed, 12 Jul 2023 14:09:44 +0800 Subject: [PATCH] feat(stylelint): number-leading-zero deprecated --- src/style/layout.less | 12 ++++++------ stylelint.config.js | 1 - 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/style/layout.less b/src/style/layout.less index e0e6e536..449e3099 100644 --- a/src/style/layout.less +++ b/src/style/layout.less @@ -27,7 +27,7 @@ text-decoration: none; margin-right: 24px; cursor: pointer; - transition: color .2s cubic-bezier(.38, 0, .24, 1); + transition: color 0.2s cubic-bezier(0.38, 0, 0.24, 1); } .left-operation-container, @@ -129,7 +129,7 @@ top: 0; bottom: 0; z-index: 200; - transition: all .3s; + transition: all 0.3s; min-height: 100%; &-mix { @@ -176,19 +176,19 @@ &-logo-normal { color: var(--td-brand-color); font: var(--td-font-body-large); - transition: all .3s; + transition: all 0.3s; } } &-side-nav-placeholder { flex: 1 1 232px; min-width: 232px; - transition: all .3s; + transition: all 0.3s; &-hidden { flex: 1 1 72px; min-width: 72px; - transition: all .3s; + transition: all 0.3s; } } } @@ -207,7 +207,7 @@ .version-container { color: var(--td-text-color-primary); - opacity: .4; + opacity: 0.4; } .t-menu__popup { diff --git a/stylelint.config.js b/stylelint.config.js index 73e3952b..9f9ad637 100644 --- a/stylelint.config.js +++ b/stylelint.config.js @@ -3,7 +3,6 @@ module.exports = { extends: ['stylelint-config-standard'], rules: { 'no-duplicate-selectors': null, - 'number-leading-zero': 'never', 'block-no-empty': null, 'selector-class-pattern': null, 'declaration-block-no-redundant-longhand-properties': [true, { ignoreShorthands: ['/flex/'] }],