@aarongoldenthal/stylelint-config-standard 23.0.0 → 24.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.
Files changed (2) hide show
  1. package/index.js +9 -0
  2. package/package.json +9 -9
package/index.js CHANGED
@@ -1,5 +1,11 @@
1
1
  /* eslint-disable unicorn/no-null -- null required to disable rules */
2
2
  export default {
3
+ languageOptions: {
4
+ directionality: {
5
+ block: 'top-to-bottom',
6
+ inline: 'left-to-right'
7
+ }
8
+ },
3
9
  overrides: [
4
10
  {
5
11
  customSyntax: 'postcss-html',
@@ -219,6 +225,7 @@ export default {
219
225
  'selector-max-universal': null,
220
226
  'selector-nested-pattern': null,
221
227
  'selector-no-deprecated': true,
228
+ 'selector-no-invalid': true,
222
229
  'selector-no-qualifying-type': null,
223
230
  'selector-no-vendor-prefix': true,
224
231
  'selector-not-notation': 'complex',
@@ -255,8 +262,10 @@ export default {
255
262
  `vw`
256
263
  ],
257
264
  'unit-disallowed-list': null,
265
+ 'unit-layout-mappings': null,
258
266
  'unit-no-unknown': true,
259
267
  'value-keyword-case': 'lower',
268
+ 'value-keyword-layout-mappings': 'flow-relative',
260
269
  'value-no-vendor-prefix': [
261
270
  true,
262
271
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aarongoldenthal/stylelint-config-standard",
3
- "version": "23.0.0",
3
+ "version": "24.0.0",
4
4
  "description": "Standard StyleLint configuration settings",
5
5
  "exports": "./index.js",
6
6
  "type": "module",
@@ -25,7 +25,7 @@
25
25
  "author": "Aaron Goldenthal <npm@aarongoldenthal.com>",
26
26
  "license": "MIT",
27
27
  "engines": {
28
- "node": "^20.9.0 || ^22.11.0 || >=24.0.0"
28
+ "node": "^22.11.0 || ^24.11.0 || >=26"
29
29
  },
30
30
  "files": [
31
31
  "index.js"
@@ -41,15 +41,15 @@
41
41
  "stylelint-plugin-logical-css": "2.1.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@aarongoldenthal/eslint-config-standard": "45.0.1",
45
- "@vitest/coverage-v8": "4.1.4",
46
- "eslint": "10.2.1",
47
- "markdownlint-cli2": "0.22.0",
44
+ "@aarongoldenthal/eslint-config-standard": "45.0.2",
45
+ "@vitest/coverage-v8": "4.1.5",
46
+ "eslint": "10.3.0",
47
+ "markdownlint-cli2": "0.22.1",
48
48
  "prettier": "3.8.3",
49
- "stylelint": "17.8.0",
50
- "vitest": "4.1.4"
49
+ "stylelint": "17.10.0",
50
+ "vitest": "4.1.5"
51
51
  },
52
52
  "peerDependencies": {
53
- "stylelint": "^17.8.0"
53
+ "stylelint": "^17.10.0"
54
54
  }
55
55
  }