@alexaegis/stylelint-config 0.3.0 → 0.3.2
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/index.cjs +10 -1
- package/index.cjs.map +1 -1
- package/index.d.ts.map +1 -1
- package/index.js +10 -1
- package/index.js.map +1 -1
- package/package.json +24 -16
package/index.cjs
CHANGED
|
@@ -4,7 +4,16 @@ const index = {
|
|
|
4
4
|
"stylelint-config-standard",
|
|
5
5
|
"stylelint-config-standard-scss",
|
|
6
6
|
"stylelint-config-html"
|
|
7
|
-
]
|
|
7
|
+
],
|
|
8
|
+
// ? This is for Svelte only. Maybe move it into it's own package?
|
|
9
|
+
rules: {
|
|
10
|
+
"selector-pseudo-class-no-unknown": [
|
|
11
|
+
true,
|
|
12
|
+
{
|
|
13
|
+
ignorePseudoClasses: ["global"]
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
}
|
|
8
17
|
};
|
|
9
18
|
module.exports = index;
|
|
10
19
|
//# sourceMappingURL=index.cjs.map
|
package/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import type { Config } from 'stylelint';\n\nexport default {\n\textends: [\n\t\t'stylelint-config-standard',\n\t\t'stylelint-config-standard-scss',\n\t\t'stylelint-config-html',\n\t],\n} as Config;\n"],"names":[],"mappings":";AAEA,MAAe,QAAA;AAAA,EACd,SAAS;AAAA,IACR;AAAA,IACA;AAAA,IACA;AAAA,EACD;AACD;;"}
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../src/index.ts"],"sourcesContent":["import type { Config } from 'stylelint';\n\nexport default {\n\textends: [\n\t\t'stylelint-config-standard',\n\t\t'stylelint-config-standard-scss',\n\t\t'stylelint-config-html',\n\t],\n\t// ? This is for Svelte only. Maybe move it into it's own package?\n\trules: {\n\t\t'selector-pseudo-class-no-unknown': [\n\t\t\ttrue,\n\t\t\t{\n\t\t\t\tignorePseudoClasses: ['global'],\n\t\t\t},\n\t\t],\n\t},\n} as Config;\n"],"names":[],"mappings":";AAEA,MAAe,QAAA;AAAA,EACd,SAAS;AAAA,IACR;AAAA,IACA;AAAA,IACA;AAAA,EACD;AAAA;AAAA,EAEA,OAAO;AAAA,IACN,oCAAoC;AAAA,MACnC;AAAA,MACA;AAAA,QACC,qBAAqB,CAAC,QAAQ;AAAA,MAC/B;AAAA,IACD;AAAA,EACD;AACD;;"}
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;;AAExC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;;AAExC,wBAeY"}
|
package/index.js
CHANGED
|
@@ -3,7 +3,16 @@ const index = {
|
|
|
3
3
|
"stylelint-config-standard",
|
|
4
4
|
"stylelint-config-standard-scss",
|
|
5
5
|
"stylelint-config-html"
|
|
6
|
-
]
|
|
6
|
+
],
|
|
7
|
+
// ? This is for Svelte only. Maybe move it into it's own package?
|
|
8
|
+
rules: {
|
|
9
|
+
"selector-pseudo-class-no-unknown": [
|
|
10
|
+
true,
|
|
11
|
+
{
|
|
12
|
+
ignorePseudoClasses: ["global"]
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
|
7
16
|
};
|
|
8
17
|
export {
|
|
9
18
|
index as default
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import type { Config } from 'stylelint';\n\nexport default {\n\textends: [\n\t\t'stylelint-config-standard',\n\t\t'stylelint-config-standard-scss',\n\t\t'stylelint-config-html',\n\t],\n} as Config;\n"],"names":[],"mappings":"AAEA,MAAe,QAAA;AAAA,EACd,SAAS;AAAA,IACR;AAAA,IACA;AAAA,IACA;AAAA,EACD;AACD;"}
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import type { Config } from 'stylelint';\n\nexport default {\n\textends: [\n\t\t'stylelint-config-standard',\n\t\t'stylelint-config-standard-scss',\n\t\t'stylelint-config-html',\n\t],\n\t// ? This is for Svelte only. Maybe move it into it's own package?\n\trules: {\n\t\t'selector-pseudo-class-no-unknown': [\n\t\t\ttrue,\n\t\t\t{\n\t\t\t\tignorePseudoClasses: ['global'],\n\t\t\t},\n\t\t],\n\t},\n} as Config;\n"],"names":[],"mappings":"AAEA,MAAe,QAAA;AAAA,EACd,SAAS;AAAA,IACR;AAAA,IACA;AAAA,IACA;AAAA,EACD;AAAA;AAAA,EAEA,OAAO;AAAA,IACN,oCAAoC;AAAA,MACnC;AAAA,MACA;AAAA,QACC,qBAAqB,CAAC,QAAQ;AAAA,MAC/B;AAAA,IACD;AAAA,EACD;AACD;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexaegis/stylelint-config",
|
|
3
3
|
"description": "My stylelint config",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.2",
|
|
5
5
|
"license": "mit",
|
|
6
6
|
"private": false,
|
|
7
7
|
"archetype": {
|
|
@@ -26,6 +26,11 @@
|
|
|
26
26
|
"url": "https://github.com/AlexAegis"
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/AlexAegis/js-tooling",
|
|
29
|
+
"repository": {
|
|
30
|
+
"url": "git+https://github.com/AlexAegis/js-tooling",
|
|
31
|
+
"type": "git",
|
|
32
|
+
"directory": "packages/stylelint-config"
|
|
33
|
+
},
|
|
29
34
|
"bugs": {
|
|
30
35
|
"email": "alexaegis@gmail.com",
|
|
31
36
|
"url": "https://github.com/AlexAegis/js-tooling/issues"
|
|
@@ -38,7 +43,8 @@
|
|
|
38
43
|
"access": "public"
|
|
39
44
|
},
|
|
40
45
|
"engines": {
|
|
41
|
-
"node": ">=18.
|
|
46
|
+
"node": ">=18.10.0",
|
|
47
|
+
"pnpm": ">=8.0.0"
|
|
42
48
|
},
|
|
43
49
|
"exports": {
|
|
44
50
|
".": {
|
|
@@ -54,17 +60,17 @@
|
|
|
54
60
|
"stylelint-config-standard-scss": "^9.0.0"
|
|
55
61
|
},
|
|
56
62
|
"devDependencies": {
|
|
57
|
-
"@alexaegis/eslint-config-vitest": "^0.3.
|
|
58
|
-
"@alexaegis/ts": "^0.3.
|
|
59
|
-
"@alexaegis/vite": "^0.3.
|
|
60
|
-
"@alexaegis/vitest": "^0.3.
|
|
61
|
-
"@types/node": "^20.
|
|
62
|
-
"@vitest/coverage-c8": "^0.
|
|
63
|
-
"publint": "^0.1.
|
|
64
|
-
"stylelint": "^15.
|
|
65
|
-
"typescript": "^5.
|
|
66
|
-
"vite": "^4.3.
|
|
67
|
-
"vitest": "^0.
|
|
63
|
+
"@alexaegis/eslint-config-vitest": "^0.3.2",
|
|
64
|
+
"@alexaegis/ts": "^0.3.2",
|
|
65
|
+
"@alexaegis/vite": "^0.3.2",
|
|
66
|
+
"@alexaegis/vitest": "^0.3.2",
|
|
67
|
+
"@types/node": "^20.3.1",
|
|
68
|
+
"@vitest/coverage-c8": "^0.32.2",
|
|
69
|
+
"publint": "^0.1.12",
|
|
70
|
+
"stylelint": "^15.8.0",
|
|
71
|
+
"typescript": "^5.1.3",
|
|
72
|
+
"vite": "^4.3.9",
|
|
73
|
+
"vitest": "^0.32.2"
|
|
68
74
|
},
|
|
69
75
|
"scripts": {
|
|
70
76
|
"build": "turbo run build-lib_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
@@ -75,14 +81,16 @@
|
|
|
75
81
|
"lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
76
82
|
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
|
|
77
83
|
"lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
78
|
-
"lint:format_": "prettier --check .",
|
|
84
|
+
"lint:format_": "prettier --no-plugin-search --cache-location .cache/prettier --check .",
|
|
79
85
|
"lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
80
|
-
"lint:md_": "remark --frail --no-stdout --silently-ignore
|
|
86
|
+
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
|
|
81
87
|
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
82
88
|
"lint:tsc_": "tsc --noEmit",
|
|
83
89
|
"publint": "turbo run publint_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
84
90
|
"publint_": "publint dist",
|
|
85
|
-
"
|
|
91
|
+
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
92
|
+
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
93
|
+
"format_": "prettier --no-plugin-search --cache-location .cache/prettier --write .",
|
|
86
94
|
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/stylelint-config",
|
|
87
95
|
"test_": "vitest --passWithNoTests --coverage --run",
|
|
88
96
|
"test:watch": "vitest --passWithNoTests --coverage"
|