@discourse/lint-configs 2.44.0 → 2.44.1

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/eslint.mjs CHANGED
@@ -281,14 +281,7 @@ export default [
281
281
  "",
282
282
  // Internal
283
283
  "^discourse/",
284
- "^discourse-common/",
285
284
  "^discourse-.+",
286
- "^admin/",
287
- "^wizard/",
288
- "^I18n$",
289
- "^select-kit/",
290
- "^float-kit/",
291
- "^truth-helpers/",
292
285
  // Plugins
293
286
  "^discourse/plugins/",
294
287
  // Relative
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@discourse/lint-configs",
3
- "version": "2.44.0",
3
+ "version": "2.44.1",
4
4
  "description": "Shareable lint configs for Discourse core, plugins, and themes",
5
5
  "author": "Discourse",
6
6
  "license": "MIT",
@@ -45,7 +45,7 @@
45
45
  "globals": "^17.4.0",
46
46
  "prettier": "^3.8.1",
47
47
  "prettier-plugin-ember-template-tag": "^2.1.3",
48
- "stylelint": "^17.4.0",
48
+ "stylelint": "^17.5.0",
49
49
  "stylelint-config-standard": "^40.0.0",
50
50
  "stylelint-config-standard-scss": "^17.0.0",
51
51
  "stylelint-scss": "^7.0.0",
@@ -55,7 +55,7 @@
55
55
  "ember-template-lint": "7.9.3",
56
56
  "eslint": "9.39.2",
57
57
  "prettier": "3.8.1",
58
- "stylelint": "17.4.0"
58
+ "stylelint": "17.5.0"
59
59
  },
60
60
  "scripts": {
61
61
  "lint": "eslint --no-error-on-unmatched-pattern \"**/*.{cjs,mjs,js}\" && pnpm prettier --check \"**/*.{cjs,mjs,js}\"",
package/stylelint.mjs CHANGED
@@ -33,6 +33,12 @@ export default {
33
33
  true,
34
34
  { ignoreKeywords: ["break-word"] },
35
35
  ],
36
+ "value-keyword-case": [
37
+ "lower",
38
+ {
39
+ ignoreProperties: ["/^\\$/", "font", "font-family"],
40
+ },
41
+ ],
36
42
 
37
43
  "discourse/no-breakpoint-mixin": true,
38
44
  },