@anolilab/stylelint-config 7.0.6 → 7.0.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/CHANGELOG.md +27 -0
- package/dist/bin.js +0 -0
- package/index.cjs +4 -1
- package/index.mjs +2 -2
- package/package.json +193 -193
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
## @anolilab/stylelint-config [7.0.8](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@7.0.7...@anolilab/stylelint-config@7.0.8) (2025-10-02)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* update stylelint-config to use pnpm preset ([17bc554](https://github.com/anolilab/javascript-style-guide/commit/17bc5541a9f24c95aed25da0c6a2b5dca05e740b))
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Dependencies
|
|
9
|
+
|
|
10
|
+
* **browserslist-config-anolilab:** upgraded to 6.0.5
|
|
11
|
+
|
|
12
|
+
## @anolilab/stylelint-config [7.0.7](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@7.0.6...@anolilab/stylelint-config@7.0.7) (2025-10-02)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* add Prettier configuration and improve code formatting ([944ac53](https://github.com/anolilab/javascript-style-guide/commit/944ac539e849b952538e536bbe5cc6a992fb1212))
|
|
17
|
+
|
|
18
|
+
### Miscellaneous Chores
|
|
19
|
+
|
|
20
|
+
* **deps:** update package dependencies to latest versions ([028b723](https://github.com/anolilab/javascript-style-guide/commit/028b7237222bfddb4f4ce43a1247f5a3ed9f2c68))
|
|
21
|
+
* update @visulima/packem to version 2.0.0-alpha.19 and add eslint-plugin-erasable-syntax-only@0.3.1\n\n- Updated all instances of @visulima/packem to the latest alpha version.\n- Added new dependency eslint-plugin-erasable-syntax-only for enhanced linting capabilities.\n- Updated devDependencies in various package.json files to ensure consistency across configurations. ([0d62091](https://github.com/anolilab/javascript-style-guide/commit/0d620916bbabb0d64266136978c0b038844e3bc7))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Dependencies
|
|
25
|
+
|
|
26
|
+
* **browserslist-config-anolilab:** upgraded to 6.0.4
|
|
27
|
+
|
|
1
28
|
## @anolilab/stylelint-config [7.0.6](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/stylelint-config@7.0.5...@anolilab/stylelint-config@7.0.6) (2025-09-05)
|
|
2
29
|
|
|
3
30
|
### Bug Fixes
|
package/dist/bin.js
CHANGED
|
File without changes
|
package/index.cjs
CHANGED
|
@@ -11,5 +11,8 @@ const config = [
|
|
|
11
11
|
];
|
|
12
12
|
|
|
13
13
|
module.exports = {
|
|
14
|
-
extends: [
|
|
14
|
+
extends: [
|
|
15
|
+
...config.map((element) => require.resolve(element)),
|
|
16
|
+
"stylelint-config-clean-order",
|
|
17
|
+
],
|
|
15
18
|
};
|
package/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,203 +1,203 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@anolilab/stylelint-config",
|
|
3
|
+
"version": "7.0.8",
|
|
4
|
+
"description": "Stylelint shareable config for the Anolilab stylesheet guide.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"css",
|
|
7
|
+
"lint",
|
|
8
|
+
"sass",
|
|
9
|
+
"scss",
|
|
10
|
+
"style",
|
|
11
|
+
"stylelint",
|
|
12
|
+
"stylelint-config",
|
|
13
|
+
"anolilab",
|
|
14
|
+
"stylelint-a11y",
|
|
15
|
+
"stylelint-config-clean-order",
|
|
16
|
+
"stylelint-config-standard",
|
|
17
|
+
"stylelint-declaration-block-no-ignored-properties",
|
|
18
|
+
"stylelint-high-performance-animation",
|
|
19
|
+
"stylelint-no-unsupported-browser-features",
|
|
20
|
+
"stylelint-require-units",
|
|
21
|
+
"stylelint-selector-no-empty"
|
|
22
|
+
],
|
|
23
|
+
"homepage": "https://anolilab.com/nodejs/packages/stylelint-config",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/anolilab/javascript-style-guide.git",
|
|
27
|
+
"directory": "packages/stylelint-config"
|
|
28
|
+
},
|
|
29
|
+
"funding": [
|
|
30
|
+
{
|
|
31
|
+
"type": "github",
|
|
32
|
+
"url": "https://github.com/sponsors/prisis"
|
|
28
33
|
},
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
34
|
+
{
|
|
35
|
+
"type": "consulting",
|
|
36
|
+
"url": "https://anolilab.com/support"
|
|
37
|
+
}
|
|
38
|
+
],
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"author": {
|
|
41
|
+
"name": "Daniel Bannert",
|
|
42
|
+
"email": "d.bannert@anolilab.de"
|
|
43
|
+
},
|
|
44
|
+
"sideEffects": false,
|
|
45
|
+
"type": "module",
|
|
46
|
+
"exports": {
|
|
47
|
+
".": {
|
|
48
|
+
"import": {
|
|
49
|
+
"types": "./index.d.mts",
|
|
50
|
+
"default": "./index.mjs"
|
|
51
|
+
},
|
|
52
|
+
"require": {
|
|
53
|
+
"types": "./index.d.cts",
|
|
54
|
+
"default": "./index.cjs"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"./best-practices": {
|
|
58
|
+
"import": {
|
|
59
|
+
"types": "./dist/config/best-practices.d.mts",
|
|
60
|
+
"default": "./dist/config/best-practices.mjs"
|
|
61
|
+
},
|
|
62
|
+
"require": {
|
|
63
|
+
"types": "./dist/config/best-practices.d.cts",
|
|
64
|
+
"default": "./dist/config/best-practices.cjs"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"./declaration-block-no-ignored-properties": {
|
|
68
|
+
"import": {
|
|
69
|
+
"types": "./dist/config/declaration-block-no-ignored-properties.d.mts",
|
|
70
|
+
"default": "./dist/config/declaration-block-no-ignored-properties.mjs"
|
|
71
|
+
},
|
|
72
|
+
"require": {
|
|
73
|
+
"types": "./dist/config/declaration-block-no-ignored-properties.d.cts",
|
|
74
|
+
"default": "./dist/config/declaration-block-no-ignored-properties.cjs"
|
|
75
|
+
}
|
|
43
76
|
},
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"types": "./index.d.cts",
|
|
54
|
-
"default": "./index.cjs"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"./best-practices": {
|
|
58
|
-
"import": {
|
|
59
|
-
"types": "./dist/config/best-practices.d.mts",
|
|
60
|
-
"default": "./dist/config/best-practices.mjs"
|
|
61
|
-
},
|
|
62
|
-
"require": {
|
|
63
|
-
"types": "./dist/config/best-practices.d.cts",
|
|
64
|
-
"default": "./dist/config/best-practices.cjs"
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
"./declaration-block-no-ignored-properties": {
|
|
68
|
-
"import": {
|
|
69
|
-
"types": "./dist/config/declaration-block-no-ignored-properties.d.mts",
|
|
70
|
-
"default": "./dist/config/declaration-block-no-ignored-properties.mjs"
|
|
71
|
-
},
|
|
72
|
-
"require": {
|
|
73
|
-
"types": "./dist/config/declaration-block-no-ignored-properties.d.cts",
|
|
74
|
-
"default": "./dist/config/declaration-block-no-ignored-properties.cjs"
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
"./high-performance-animation": {
|
|
78
|
-
"import": {
|
|
79
|
-
"types": "./dist/config/high-performance-animation.d.mts",
|
|
80
|
-
"default": "./dist/config/high-performance-animation.mjs"
|
|
81
|
-
},
|
|
82
|
-
"require": {
|
|
83
|
-
"types": "./dist/config/high-performance-animation.d.cts",
|
|
84
|
-
"default": "./dist/config/high-performance-animation.cjs"
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
"./no-unsupported-browser-features": {
|
|
88
|
-
"import": {
|
|
89
|
-
"types": "./dist/config/no-unsupported-browser-features.d.mts",
|
|
90
|
-
"default": "./dist/config/no-unsupported-browser-features.mjs"
|
|
91
|
-
},
|
|
92
|
-
"require": {
|
|
93
|
-
"types": "./dist/config/no-unsupported-browser-features.d.cts",
|
|
94
|
-
"default": "./dist/config/no-unsupported-browser-features.cjs"
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
"./require-units": {
|
|
98
|
-
"import": {
|
|
99
|
-
"types": "./dist/config/require-units.d.mts",
|
|
100
|
-
"default": "./dist/config/require-units.mjs"
|
|
101
|
-
},
|
|
102
|
-
"require": {
|
|
103
|
-
"types": "./dist/config/require-units.d.cts",
|
|
104
|
-
"default": "./dist/config/require-units.cjs"
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
|
-
"./selector-no-empty": {
|
|
108
|
-
"import": {
|
|
109
|
-
"types": "./dist/config/selector-no-empty.d.mts",
|
|
110
|
-
"default": "./dist/config/selector-no-empty.mjs"
|
|
111
|
-
},
|
|
112
|
-
"require": {
|
|
113
|
-
"types": "./dist/config/selector-no-empty.d.cts",
|
|
114
|
-
"default": "./dist/config/selector-no-empty.cjs"
|
|
115
|
-
}
|
|
116
|
-
},
|
|
117
|
-
"./standard": {
|
|
118
|
-
"import": {
|
|
119
|
-
"types": "./dist/config/standard.d.mts",
|
|
120
|
-
"default": "./dist/config/standard.mjs"
|
|
121
|
-
},
|
|
122
|
-
"require": {
|
|
123
|
-
"types": "./dist/config/standard.d.cts",
|
|
124
|
-
"default": "./dist/config/standard.cjs"
|
|
125
|
-
}
|
|
126
|
-
},
|
|
127
|
-
"./tailwindcss": {
|
|
128
|
-
"import": {
|
|
129
|
-
"types": "./dist/config/tailwindcss.d.mts",
|
|
130
|
-
"default": "./dist/config/tailwindcss.mjs"
|
|
131
|
-
},
|
|
132
|
-
"require": {
|
|
133
|
-
"types": "./dist/config/tailwindcss.d.cts",
|
|
134
|
-
"default": "./dist/config/tailwindcss.cjs"
|
|
135
|
-
}
|
|
136
|
-
},
|
|
137
|
-
"./package.json": "./package.json"
|
|
77
|
+
"./high-performance-animation": {
|
|
78
|
+
"import": {
|
|
79
|
+
"types": "./dist/config/high-performance-animation.d.mts",
|
|
80
|
+
"default": "./dist/config/high-performance-animation.mjs"
|
|
81
|
+
},
|
|
82
|
+
"require": {
|
|
83
|
+
"types": "./dist/config/high-performance-animation.d.cts",
|
|
84
|
+
"default": "./dist/config/high-performance-animation.cjs"
|
|
85
|
+
}
|
|
138
86
|
},
|
|
139
|
-
"
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
"./dist/config/declaration-block-no-ignored-properties.d.ts"
|
|
149
|
-
],
|
|
150
|
-
"high-performance-animation": [
|
|
151
|
-
"./dist/config/high-performance-animation.d.ts"
|
|
152
|
-
],
|
|
153
|
-
"no-unsupported-browser-features": [
|
|
154
|
-
"./dist/config/no-unsupported-browser-features.d.ts"
|
|
155
|
-
],
|
|
156
|
-
"require-units": [
|
|
157
|
-
"./dist/config/require-units.d.ts"
|
|
158
|
-
],
|
|
159
|
-
"selector-no-empty": [
|
|
160
|
-
"./dist/config/selector-no-empty.d.ts"
|
|
161
|
-
],
|
|
162
|
-
"standard": [
|
|
163
|
-
"./dist/config/standard.d.ts"
|
|
164
|
-
],
|
|
165
|
-
"tailwindcss": [
|
|
166
|
-
"./dist/config/tailwindcss.d.ts"
|
|
167
|
-
]
|
|
168
|
-
}
|
|
87
|
+
"./no-unsupported-browser-features": {
|
|
88
|
+
"import": {
|
|
89
|
+
"types": "./dist/config/no-unsupported-browser-features.d.mts",
|
|
90
|
+
"default": "./dist/config/no-unsupported-browser-features.mjs"
|
|
91
|
+
},
|
|
92
|
+
"require": {
|
|
93
|
+
"types": "./dist/config/no-unsupported-browser-features.d.cts",
|
|
94
|
+
"default": "./dist/config/no-unsupported-browser-features.cjs"
|
|
95
|
+
}
|
|
169
96
|
},
|
|
170
|
-
"
|
|
171
|
-
|
|
97
|
+
"./require-units": {
|
|
98
|
+
"import": {
|
|
99
|
+
"types": "./dist/config/require-units.d.mts",
|
|
100
|
+
"default": "./dist/config/require-units.mjs"
|
|
101
|
+
},
|
|
102
|
+
"require": {
|
|
103
|
+
"types": "./dist/config/require-units.d.cts",
|
|
104
|
+
"default": "./dist/config/require-units.cjs"
|
|
105
|
+
}
|
|
172
106
|
},
|
|
173
|
-
"
|
|
174
|
-
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
|
|
182
|
-
"dependencies": {
|
|
183
|
-
"browserslist-config-anolilab": "6.0.3",
|
|
184
|
-
"stylelint-config-clean-order": "^7.0.0",
|
|
185
|
-
"stylelint-config-standard": "^39.0.0",
|
|
186
|
-
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
|
|
187
|
-
"stylelint-high-performance-animation": "^1.11.0",
|
|
188
|
-
"stylelint-no-unsupported-browser-features": "^8.0.4",
|
|
189
|
-
"stylelint-require-units": "^2.0.0",
|
|
190
|
-
"stylelint-selector-no-empty": "^1.0.9"
|
|
107
|
+
"./selector-no-empty": {
|
|
108
|
+
"import": {
|
|
109
|
+
"types": "./dist/config/selector-no-empty.d.mts",
|
|
110
|
+
"default": "./dist/config/selector-no-empty.mjs"
|
|
111
|
+
},
|
|
112
|
+
"require": {
|
|
113
|
+
"types": "./dist/config/selector-no-empty.d.cts",
|
|
114
|
+
"default": "./dist/config/selector-no-empty.cjs"
|
|
115
|
+
}
|
|
191
116
|
},
|
|
192
|
-
"
|
|
193
|
-
|
|
194
|
-
"
|
|
117
|
+
"./standard": {
|
|
118
|
+
"import": {
|
|
119
|
+
"types": "./dist/config/standard.d.mts",
|
|
120
|
+
"default": "./dist/config/standard.mjs"
|
|
121
|
+
},
|
|
122
|
+
"require": {
|
|
123
|
+
"types": "./dist/config/standard.d.cts",
|
|
124
|
+
"default": "./dist/config/standard.cjs"
|
|
125
|
+
}
|
|
195
126
|
},
|
|
196
|
-
"
|
|
197
|
-
|
|
127
|
+
"./tailwindcss": {
|
|
128
|
+
"import": {
|
|
129
|
+
"types": "./dist/config/tailwindcss.d.mts",
|
|
130
|
+
"default": "./dist/config/tailwindcss.mjs"
|
|
131
|
+
},
|
|
132
|
+
"require": {
|
|
133
|
+
"types": "./dist/config/tailwindcss.d.cts",
|
|
134
|
+
"default": "./dist/config/tailwindcss.cjs"
|
|
135
|
+
}
|
|
198
136
|
},
|
|
199
|
-
"
|
|
200
|
-
|
|
201
|
-
|
|
137
|
+
"./package.json": "./package.json"
|
|
138
|
+
},
|
|
139
|
+
"main": "index.cjs",
|
|
140
|
+
"module": "index.mjs",
|
|
141
|
+
"types": "index.d.cts",
|
|
142
|
+
"typesVersions": {
|
|
143
|
+
">=5.0": {
|
|
144
|
+
"best-practices": [
|
|
145
|
+
"./dist/config/best-practices.d.ts"
|
|
146
|
+
],
|
|
147
|
+
"declaration-block-no-ignored-properties": [
|
|
148
|
+
"./dist/config/declaration-block-no-ignored-properties.d.ts"
|
|
149
|
+
],
|
|
150
|
+
"high-performance-animation": [
|
|
151
|
+
"./dist/config/high-performance-animation.d.ts"
|
|
152
|
+
],
|
|
153
|
+
"no-unsupported-browser-features": [
|
|
154
|
+
"./dist/config/no-unsupported-browser-features.d.ts"
|
|
155
|
+
],
|
|
156
|
+
"require-units": [
|
|
157
|
+
"./dist/config/require-units.d.ts"
|
|
158
|
+
],
|
|
159
|
+
"selector-no-empty": [
|
|
160
|
+
"./dist/config/selector-no-empty.d.ts"
|
|
161
|
+
],
|
|
162
|
+
"standard": [
|
|
163
|
+
"./dist/config/standard.d.ts"
|
|
164
|
+
],
|
|
165
|
+
"tailwindcss": [
|
|
166
|
+
"./dist/config/tailwindcss.d.ts"
|
|
167
|
+
]
|
|
202
168
|
}
|
|
203
|
-
}
|
|
169
|
+
},
|
|
170
|
+
"bin": {
|
|
171
|
+
"stylelint-config:install": "./dist/bin.js"
|
|
172
|
+
},
|
|
173
|
+
"files": [
|
|
174
|
+
"dist",
|
|
175
|
+
"README.md",
|
|
176
|
+
"CHANGELOG.md",
|
|
177
|
+
"LICENSE.md",
|
|
178
|
+
"index.d.ts",
|
|
179
|
+
"index.cjs",
|
|
180
|
+
"index.mjs"
|
|
181
|
+
],
|
|
182
|
+
"dependencies": {
|
|
183
|
+
"browserslist-config-anolilab": "6.0.5",
|
|
184
|
+
"stylelint-config-clean-order": "^7.0.0",
|
|
185
|
+
"stylelint-config-standard": "^39.0.0",
|
|
186
|
+
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
|
|
187
|
+
"stylelint-high-performance-animation": "^1.11.0",
|
|
188
|
+
"stylelint-no-unsupported-browser-features": "^8.0.4",
|
|
189
|
+
"stylelint-require-units": "^2.0.0",
|
|
190
|
+
"stylelint-selector-no-empty": "^1.0.9"
|
|
191
|
+
},
|
|
192
|
+
"peerDependencies": {
|
|
193
|
+
"postcss": "^8.5.6",
|
|
194
|
+
"stylelint": "^15.11.0 || 16.x"
|
|
195
|
+
},
|
|
196
|
+
"engines": {
|
|
197
|
+
"node": ">=20.18.* <=24.*"
|
|
198
|
+
},
|
|
199
|
+
"publishConfig": {
|
|
200
|
+
"access": "public",
|
|
201
|
+
"provenance": true
|
|
202
|
+
}
|
|
203
|
+
}
|