@tomjs/stylelint 6.0.0 → 7.0.0
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/globs-DiC_9FJQ.mjs +36 -0
- package/dist/globs.mjs +3 -0
- package/dist/index.mjs +63 -0
- package/dist/uniapp.mjs +12 -0
- package/package.json +13 -8
- package/dist/index.js +0 -75
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
//#region src/globs.ts
|
|
2
|
+
/**
|
|
3
|
+
* https://github.com/antfu/eslint-config/blob/5af1d9bf96609ab1d0a820cee0f83cd6948a0c5d/src/globs.ts#L56C14-L56C26
|
|
4
|
+
*/
|
|
5
|
+
const IGNORE_FILES = [
|
|
6
|
+
"**/node_modules",
|
|
7
|
+
"**/dist",
|
|
8
|
+
"**/output",
|
|
9
|
+
"**/coverage",
|
|
10
|
+
"**/temp",
|
|
11
|
+
"**/.temp",
|
|
12
|
+
"**/tmp",
|
|
13
|
+
"**/.tmp",
|
|
14
|
+
"**/.history",
|
|
15
|
+
"**/.vitepress/cache",
|
|
16
|
+
"**/.nuxt",
|
|
17
|
+
"**/.next",
|
|
18
|
+
"**/.svelte-kit",
|
|
19
|
+
"**/.vercel",
|
|
20
|
+
"**/.changeset",
|
|
21
|
+
"**/.idea",
|
|
22
|
+
"**/.cache",
|
|
23
|
+
"**/.output",
|
|
24
|
+
"**/.vite-inspect",
|
|
25
|
+
"**/.yarn",
|
|
26
|
+
"**/__snapshots__",
|
|
27
|
+
"**/*.js",
|
|
28
|
+
"**/*.jsx",
|
|
29
|
+
"**/*.tsx",
|
|
30
|
+
"**/*.ts",
|
|
31
|
+
"**/*.json",
|
|
32
|
+
"**/*.md"
|
|
33
|
+
];
|
|
34
|
+
|
|
35
|
+
//#endregion
|
|
36
|
+
export { IGNORE_FILES as t };
|
package/dist/globs.mjs
ADDED
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { t as IGNORE_FILES } from "./globs-DiC_9FJQ.mjs";
|
|
2
|
+
|
|
3
|
+
//#region src/index.ts
|
|
4
|
+
const config = {
|
|
5
|
+
extends: ["stylelint-config-recommended", "stylelint-config-recess-order"],
|
|
6
|
+
plugins: ["stylelint-order", "stylelint-scss"],
|
|
7
|
+
ignoreFiles: [...IGNORE_FILES],
|
|
8
|
+
overrides: [{
|
|
9
|
+
customSyntax: "postcss-html",
|
|
10
|
+
files: ["*.(html|vue)", "**/*.(html|vue)"],
|
|
11
|
+
rules: {
|
|
12
|
+
"selector-pseudo-class-no-unknown": [true, { ignorePseudoClasses: ["global", "deep"] }],
|
|
13
|
+
"selector-pseudo-element-no-unknown": [true, { ignorePseudoElements: [
|
|
14
|
+
"v-deep",
|
|
15
|
+
"v-global",
|
|
16
|
+
"v-slotted"
|
|
17
|
+
] }]
|
|
18
|
+
}
|
|
19
|
+
}, {
|
|
20
|
+
files: ["*.scss", "**/*.scss"],
|
|
21
|
+
customSyntax: "postcss-scss",
|
|
22
|
+
extends: ["stylelint-config-recommended-scss", "stylelint-config-recommended-vue/scss"]
|
|
23
|
+
}],
|
|
24
|
+
rules: {
|
|
25
|
+
"alpha-value-notation": "number",
|
|
26
|
+
"color-function-notation": null,
|
|
27
|
+
"font-family-no-missing-generic-family-keyword": null,
|
|
28
|
+
"import-notation": null,
|
|
29
|
+
"media-feature-range-notation": "prefix",
|
|
30
|
+
"named-grid-areas-no-invalid": null,
|
|
31
|
+
"no-descending-specificity": null,
|
|
32
|
+
"no-duplicate-selectors": null,
|
|
33
|
+
"no-empty-source": null,
|
|
34
|
+
"rule-empty-line-before": ["always", { ignore: ["after-comment", "first-nested"] }],
|
|
35
|
+
"selector-class-pattern": null,
|
|
36
|
+
"selector-not-notation": null,
|
|
37
|
+
"at-rule-no-unknown": [true, { ignoreAtRules: [
|
|
38
|
+
"extends",
|
|
39
|
+
"ignores",
|
|
40
|
+
"include",
|
|
41
|
+
"mixin",
|
|
42
|
+
"if",
|
|
43
|
+
"else",
|
|
44
|
+
"media",
|
|
45
|
+
"for",
|
|
46
|
+
"at-root",
|
|
47
|
+
"tailwind",
|
|
48
|
+
"apply",
|
|
49
|
+
"variants",
|
|
50
|
+
"responsive",
|
|
51
|
+
"screen",
|
|
52
|
+
"function",
|
|
53
|
+
"each",
|
|
54
|
+
"use",
|
|
55
|
+
"forward",
|
|
56
|
+
"return"
|
|
57
|
+
] }]
|
|
58
|
+
}
|
|
59
|
+
};
|
|
60
|
+
var src_default = config;
|
|
61
|
+
|
|
62
|
+
//#endregion
|
|
63
|
+
export { src_default as default };
|
package/dist/uniapp.mjs
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
//#region src/uniapp.ts
|
|
2
|
+
var uniapp_default = {
|
|
3
|
+
extends: ["./index"],
|
|
4
|
+
rules: {
|
|
5
|
+
"unit-no-unknown": [true, { ignoreUnits: ["rpx"] }],
|
|
6
|
+
"declaration-property-value-no-unknown": [true, { ignoreProperties: { "/.+/": ["/rpx$/", "/$/"] } }],
|
|
7
|
+
"selector-type-no-unknown": [true, { ignoreTypes: ["page"] }]
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
//#endregion
|
|
12
|
+
export { uniapp_default as default };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tomjs/stylelint",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "7.0.0",
|
|
5
5
|
"description": "stylelint config for tomjs",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Tom Gao",
|
|
@@ -24,7 +24,10 @@
|
|
|
24
24
|
"scss",
|
|
25
25
|
"vue"
|
|
26
26
|
],
|
|
27
|
-
"exports":
|
|
27
|
+
"exports": {
|
|
28
|
+
".": "./dist/index.mjs",
|
|
29
|
+
"./uniapp": "./dist/uniapp.mjs"
|
|
30
|
+
},
|
|
28
31
|
"files": [
|
|
29
32
|
"dist"
|
|
30
33
|
],
|
|
@@ -32,17 +35,19 @@
|
|
|
32
35
|
"node": ">=18.12.0"
|
|
33
36
|
},
|
|
34
37
|
"peerDependencies": {
|
|
35
|
-
"stylelint": "^16.
|
|
38
|
+
"stylelint": "^16.25.0"
|
|
36
39
|
},
|
|
37
40
|
"dependencies": {
|
|
38
|
-
"postcss": "^8.5.
|
|
41
|
+
"postcss": "^8.5.6",
|
|
39
42
|
"postcss-html": "^1.8.0",
|
|
40
43
|
"postcss-scss": "^4.0.9",
|
|
41
44
|
"stylelint-config-html": "^1.1.0",
|
|
42
|
-
"stylelint-config-recess-order": "^
|
|
43
|
-
"stylelint-config-recommended": "^
|
|
44
|
-
"stylelint-config-recommended-scss": "^
|
|
45
|
-
"stylelint-config-recommended-vue": "
|
|
45
|
+
"stylelint-config-recess-order": "^7.4.0",
|
|
46
|
+
"stylelint-config-recommended": "^17.0.0",
|
|
47
|
+
"stylelint-config-recommended-scss": "^16.0.2",
|
|
48
|
+
"stylelint-config-recommended-vue": "^1.6.1",
|
|
49
|
+
"stylelint-order": "^7.0.0",
|
|
50
|
+
"stylelint-scss": "^6.12.1"
|
|
46
51
|
},
|
|
47
52
|
"scripts": {
|
|
48
53
|
"build": "tsdown"
|
package/dist/index.js
DELETED
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
//#region src/globs.ts
|
|
2
|
-
/**
|
|
3
|
-
* https://github.com/antfu/eslint-config/blob/5af1d9bf96609ab1d0a820cee0f83cd6948a0c5d/src/globs.ts#L56C14-L56C26
|
|
4
|
-
*/
|
|
5
|
-
const GLOB_EXCLUDE = [
|
|
6
|
-
"**/node_modules",
|
|
7
|
-
"**/dist",
|
|
8
|
-
"**/output",
|
|
9
|
-
"**/coverage",
|
|
10
|
-
"**/temp",
|
|
11
|
-
"**/.temp",
|
|
12
|
-
"**/tmp",
|
|
13
|
-
"**/.tmp",
|
|
14
|
-
"**/.history",
|
|
15
|
-
"**/.vitepress/cache",
|
|
16
|
-
"**/.nuxt",
|
|
17
|
-
"**/.next",
|
|
18
|
-
"**/.svelte-kit",
|
|
19
|
-
"**/.vercel",
|
|
20
|
-
"**/.changeset",
|
|
21
|
-
"**/.idea",
|
|
22
|
-
"**/.cache",
|
|
23
|
-
"**/.output",
|
|
24
|
-
"**/.vite-inspect",
|
|
25
|
-
"**/.yarn",
|
|
26
|
-
"**/CHANGELOG*.md",
|
|
27
|
-
"**/*.min.*",
|
|
28
|
-
"**/LICENSE*",
|
|
29
|
-
"**/__snapshots__"
|
|
30
|
-
];
|
|
31
|
-
|
|
32
|
-
//#endregion
|
|
33
|
-
//#region src/index.ts
|
|
34
|
-
const config = {
|
|
35
|
-
extends: [
|
|
36
|
-
"stylelint-config-recommended",
|
|
37
|
-
"stylelint-config-recommended-scss",
|
|
38
|
-
"stylelint-config-recommended-vue/scss",
|
|
39
|
-
"stylelint-config-html/vue",
|
|
40
|
-
"stylelint-config-recess-order"
|
|
41
|
-
],
|
|
42
|
-
overrides: [{
|
|
43
|
-
files: ["**/*.{vue,html}"],
|
|
44
|
-
customSyntax: "postcss-html"
|
|
45
|
-
}, {
|
|
46
|
-
files: ["**/*.{css,scss}"],
|
|
47
|
-
customSyntax: "postcss-scss"
|
|
48
|
-
}],
|
|
49
|
-
rules: {
|
|
50
|
-
"alpha-value-notation": "number",
|
|
51
|
-
"color-function-notation": null,
|
|
52
|
-
"font-family-no-missing-generic-family-keyword": null,
|
|
53
|
-
"import-notation": null,
|
|
54
|
-
"media-feature-range-notation": "prefix",
|
|
55
|
-
"named-grid-areas-no-invalid": null,
|
|
56
|
-
"no-descending-specificity": null,
|
|
57
|
-
"no-duplicate-selectors": null,
|
|
58
|
-
"no-empty-source": null,
|
|
59
|
-
"rule-empty-line-before": ["always", { ignore: ["after-comment", "first-nested"] }],
|
|
60
|
-
"selector-class-pattern": null,
|
|
61
|
-
"selector-not-notation": null,
|
|
62
|
-
"selector-pseudo-class-no-unknown": [true, { ignorePseudoClasses: ["global", "deep"] }]
|
|
63
|
-
},
|
|
64
|
-
ignoreFiles: [
|
|
65
|
-
...GLOB_EXCLUDE,
|
|
66
|
-
"**/*.js",
|
|
67
|
-
"**/*.jsx",
|
|
68
|
-
"**/*.tsx",
|
|
69
|
-
"**/*.ts"
|
|
70
|
-
]
|
|
71
|
-
};
|
|
72
|
-
var src_default = config;
|
|
73
|
-
|
|
74
|
-
//#endregion
|
|
75
|
-
export { src_default as default };
|