@pengzhanbo/stylelint-config 0.3.1 → 0.3.4
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/dist/index.d.ts +27 -66
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -1,68 +1,29 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
27
|
-
{
|
|
28
|
-
files: ["*.vue", "**/*.vue"],
|
|
29
|
-
customSyntax: "postcss-html",
|
|
30
|
-
extends: ["stylelint-config-recommended-vue"]
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
files: ["*.html", "**/*.html", "*.htm", "**/*.htm"],
|
|
34
|
-
customSyntax: "postcss-html"
|
|
35
|
-
}
|
|
36
|
-
],
|
|
37
|
-
rules: {
|
|
38
|
-
"at-rule-no-unknown": [
|
|
39
|
-
true,
|
|
40
|
-
{
|
|
41
|
-
ignoreAtRules: [
|
|
42
|
-
"tailwind",
|
|
43
|
-
"apply",
|
|
44
|
-
"variants",
|
|
45
|
-
"responsive",
|
|
46
|
-
"screen",
|
|
47
|
-
"function",
|
|
48
|
-
"if",
|
|
49
|
-
"each",
|
|
50
|
-
"include",
|
|
51
|
-
"mixin"
|
|
52
|
-
]
|
|
53
|
-
}
|
|
54
|
-
],
|
|
55
|
-
"unit-no-unknown": [true, { ignoreUnits: ["rpx"] }],
|
|
56
|
-
"color-function-notation": "legacy",
|
|
57
|
-
"alpha-value-notation": "number",
|
|
58
|
-
"selector-class-pattern": null,
|
|
59
|
-
"selector-pseudo-class-no-unknown": [
|
|
60
|
-
true,
|
|
61
|
-
{
|
|
62
|
-
ignorePseudoClasses: ["deep", "global"]
|
|
63
|
-
}
|
|
64
|
-
]
|
|
65
|
-
}
|
|
1
|
+
declare const _default: {
|
|
2
|
+
extends: string[];
|
|
3
|
+
ignoreFiles: string[];
|
|
4
|
+
overrides: ({
|
|
5
|
+
files: string[];
|
|
6
|
+
customSyntax: string;
|
|
7
|
+
extends: string[];
|
|
8
|
+
} | {
|
|
9
|
+
files: string[];
|
|
10
|
+
customSyntax: string;
|
|
11
|
+
extends?: undefined;
|
|
12
|
+
})[];
|
|
13
|
+
rules: {
|
|
14
|
+
'at-rule-no-unknown': (boolean | {
|
|
15
|
+
ignoreAtRules: string[];
|
|
16
|
+
})[];
|
|
17
|
+
'unit-no-unknown': (boolean | {
|
|
18
|
+
ignoreUnits: string[];
|
|
19
|
+
})[];
|
|
20
|
+
'color-function-notation': string;
|
|
21
|
+
'alpha-value-notation': string;
|
|
22
|
+
'selector-class-pattern': any;
|
|
23
|
+
'selector-pseudo-class-no-unknown': (boolean | {
|
|
24
|
+
ignorePseudoClasses: string[];
|
|
25
|
+
})[];
|
|
26
|
+
};
|
|
66
27
|
};
|
|
67
28
|
|
|
68
|
-
export {
|
|
29
|
+
export { _default as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pengzhanbo/stylelint-config",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"author": "pengzhanbo <q942450674@outlook.com> (https://github/pengzhanbo/)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/pengzhanbo/configs#readme",
|
|
@@ -37,21 +37,21 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"postcss": "^8.4.
|
|
40
|
+
"postcss": "^8.4.21",
|
|
41
41
|
"postcss-html": "^1.5.0",
|
|
42
42
|
"postcss-scss": "^4.0.6",
|
|
43
|
-
"stylelint-config-prettier": "^9.0.
|
|
44
|
-
"stylelint-config-recess-order": "^
|
|
45
|
-
"stylelint-config-recommended-scss": "^
|
|
43
|
+
"stylelint-config-prettier": "^9.0.5",
|
|
44
|
+
"stylelint-config-recess-order": "^4.0.0",
|
|
45
|
+
"stylelint-config-recommended-scss": "^9.0.1",
|
|
46
46
|
"stylelint-config-recommended-vue": "^1.4.0",
|
|
47
|
-
"stylelint-config-standard": "^
|
|
48
|
-
"stylelint-config-standard-scss": "^
|
|
47
|
+
"stylelint-config-standard": "^31.0.0",
|
|
48
|
+
"stylelint-config-standard-scss": "^7.0.1"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"stylelint": ">=14.10.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"unbuild": "^
|
|
54
|
+
"unbuild": "^1.1.2"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"build": "unbuild",
|