ko-lint-config 2.2.7 → 2.2.8
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/.eslintrc.js +1 -1
- package/.stylelintrc.js +2 -0
- package/CHANGELOG.md +6 -0
- package/package.json +5 -5
package/.eslintrc.js
CHANGED
|
@@ -132,7 +132,7 @@ module.exports = {
|
|
|
132
132
|
'no-useless-escape': 0,
|
|
133
133
|
'no-useless-constructor': 0, // 空构造函数
|
|
134
134
|
'no-template-curly-in-string': 0,
|
|
135
|
-
'no-console':
|
|
135
|
+
'no-console': 0,
|
|
136
136
|
'no-debugger': 2,
|
|
137
137
|
'no-param-reassign': 2, // 给函数的入参赋值
|
|
138
138
|
'no-use-before-define': 0, // 使用尚未声明的变量
|
package/.stylelintrc.js
CHANGED
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.8",
|
|
4
4
|
"description": "lint configs about eslint stylelint and prettier",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"postcss": "^8.4.12",
|
|
47
47
|
"postcss-scss": "^4.0.3",
|
|
48
48
|
"prettier": "^2.6.2",
|
|
49
|
-
"stylelint": "
|
|
50
|
-
"stylelint-config-standard": "
|
|
51
|
-
"stylelint-order": "
|
|
52
|
-
"stylelint-scss": "
|
|
49
|
+
"stylelint": "14.11.0",
|
|
50
|
+
"stylelint-config-standard": "28.0.0",
|
|
51
|
+
"stylelint-order": "5.0.0",
|
|
52
|
+
"stylelint-scss": "4.3.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"tape": "^5.5.2",
|