| | |
| | | "stylelint-scss" |
| | | ], |
| | | "rules": { |
| | | 'selector-pseudo-class-no-unknown': [ |
| | | true, |
| | | { |
| | | ignorePseudoClasses: ['deep'], // 允许 :deep() |
| | | }, |
| | | ], |
| | | 'selector-class-pattern': null, // 关闭类选择器命名规则 |
| | | 'color-named': null, // 允许使用颜色名称 |
| | | "keyframes-name-pattern": null, |
| | | // http://stylelint.cn/user-guide/rules/ |
| | | // 要求在 at 规则之后有一个一个空格 |
| | | "at-rule-name-space-after": "always", |
| | |
| | | "no-invalid-double-slash-comments": true, |
| | | |
| | | // 禁止动画名称与 @keyframes 声明不符 |
| | | "no-unknown-animations": true, |
| | | |
| | | "no-unknown-animations": null, |
| | | // 禁止数字中的拖尾 0 |
| | | "number-no-trailing-zeros": true, |
| | | |