ko-lint-config 2.2.13 → 2.2.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.stylelintrc.js +6 -0
- package/CHANGELOG.md +12 -0
- package/package.json +2 -1
package/.stylelintrc.js
CHANGED
|
@@ -46,5 +46,11 @@ module.exports = {
|
|
|
46
46
|
ignoreSelectors: ['::-webkit-input-placeholder'],
|
|
47
47
|
},
|
|
48
48
|
],
|
|
49
|
+
'at-rule-name-case': null, // less 中变量名的大小写
|
|
50
|
+
'selector-no-vendor-prefix': null, // 兼容写法
|
|
51
|
+
'property-no-vendor-prefix': null, // 兼容写法
|
|
52
|
+
'selector-pseudo-class-no-unknown': null, // 兼容写法
|
|
53
|
+
'selector-type-no-unknown': null, // 兼容写法
|
|
54
|
+
'number-max-precision': 10, // 数字中允许的小数位数
|
|
49
55
|
},
|
|
50
56
|
};
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ko-lint-config",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.15",
|
|
4
4
|
"description": "lint configs about eslint stylelint and prettier",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"eslint-plugin-sort-requires": "2.1.0",
|
|
46
46
|
"postcss": "8.4.14",
|
|
47
47
|
"postcss-scss": "4.0.4",
|
|
48
|
+
"postcss-less": "6.0.0",
|
|
48
49
|
"prettier": "2.7.1",
|
|
49
50
|
"stylelint": "14.11.0",
|
|
50
51
|
"stylelint-config-standard": "25.0.0",
|