@aarongoldenthal/stylelint-config-standard 21.0.1 → 22.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 (3) hide show
  1. package/LICENSE +1 -1
  2. package/index.js +10 -5
  3. package/package.json +13 -13
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2021 - 2025 Aaron Goldenthal
3
+ Copyright (c) 2021 - 2026 Aaron Goldenthal
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/index.js CHANGED
@@ -10,7 +10,7 @@ export default {
10
10
  plugins: [
11
11
  'stylelint-declaration-strict-value',
12
12
  'stylelint-order',
13
- 'stylelint-use-logical-spec'
13
+ 'stylelint-plugin-logical-css'
14
14
  ],
15
15
  reportDescriptionlessDisables: true,
16
16
  reportInvalidScopeDisables: true,
@@ -115,6 +115,7 @@ export default {
115
115
  'declaration-property-value-disallowed-list': null,
116
116
  'declaration-property-value-keyword-no-deprecated': true,
117
117
  'declaration-property-value-no-unknown': true,
118
+ 'display-notation': 'short',
118
119
  'font-family-name-quotes': 'always-where-recommended',
119
120
  'font-family-no-duplicate-names': true,
120
121
  'font-family-no-missing-generic-family-keyword': true,
@@ -261,9 +262,6 @@ export default {
261
262
  }
262
263
  ],
263
264
  // eslint-disable-next-line sort-keys -- keep plugin rules separate
264
- 'order/properties-alphabetical-order': true,
265
- // eslint-disable-next-line sort-keys -- keep plugin rules separate
266
- 'liberty/use-logical-spec': 'always',
267
265
  'scale-unlimited/declaration-strict-value': [
268
266
  '/color$/',
269
267
  {
@@ -271,6 +269,13 @@ export default {
271
269
  ignoreValues: ['inherit', 'transparent', 'currentColor'],
272
270
  recurseLonghand: true
273
271
  }
274
- ]
272
+ ],
273
+ // eslint-disable-next-line sort-keys -- keep plugin rules separate
274
+ 'order/custom-properties-alphabetical-order': true,
275
+ 'order/properties-alphabetical-order': true,
276
+ // eslint-disable-next-line sort-keys -- keep plugin rules separate
277
+ 'logical-css/require-logical-keywords': true,
278
+ 'logical-css/require-logical-properties': true,
279
+ 'logical-css/require-logical-units': null
275
280
  }
276
281
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aarongoldenthal/stylelint-config-standard",
3
- "version": "21.0.1",
3
+ "version": "22.0.0",
4
4
  "description": "Standard StyleLint configuration settings",
5
5
  "exports": "./index.js",
6
6
  "type": "module",
@@ -35,21 +35,21 @@
35
35
  },
36
36
  "homepage": "https://gitlab.com/gitlab-ci-utils/node/stylelint-config-standard",
37
37
  "dependencies": {
38
- "postcss-html": "1.8.0",
39
- "stylelint-declaration-strict-value": "1.10.11",
40
- "stylelint-order": "7.0.0",
41
- "stylelint-use-logical-spec": "5.0.1"
38
+ "postcss-html": "1.8.1",
39
+ "stylelint-declaration-strict-value": "1.11.1",
40
+ "stylelint-order": "8.1.1",
41
+ "stylelint-plugin-logical-css": "2.0.2"
42
42
  },
43
43
  "devDependencies": {
44
- "@aarongoldenthal/eslint-config-standard": "41.0.0",
45
- "@vitest/coverage-v8": "4.0.6",
46
- "eslint": "9.39.0",
47
- "markdownlint-cli2": "0.18.1",
48
- "prettier": "3.6.2",
49
- "stylelint": "16.25.0",
50
- "vitest": "4.0.6"
44
+ "@aarongoldenthal/eslint-config-standard": "44.0.1",
45
+ "@vitest/coverage-v8": "4.1.0",
46
+ "eslint": "9.39.4",
47
+ "markdownlint-cli2": "0.21.0",
48
+ "prettier": "3.8.1",
49
+ "stylelint": "17.5.0",
50
+ "vitest": "4.1.0"
51
51
  },
52
52
  "peerDependencies": {
53
- "stylelint": "^16.14.0"
53
+ "stylelint": "^17.1.0"
54
54
  }
55
55
  }