@discourse/lint-configs 1.4.0 → 1.4.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.
Files changed (2) hide show
  1. package/eslintrc.cjs +3 -0
  2. package/package.json +3 -3
package/eslintrc.cjs CHANGED
@@ -254,6 +254,9 @@ module.exports = {
254
254
  files: ["**/*.gjs"],
255
255
  parser: "ember-eslint-parser",
256
256
  extends: ["plugin:ember/recommended-gjs"],
257
+ rules: {
258
+ "ember/template-no-let-reference": "off", // we have valid cases of using let variables in templates
259
+ },
257
260
  },
258
261
  ],
259
262
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@discourse/lint-configs",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "description": "Shareable lint configs for Discourse core, plugins, and themes",
5
5
  "author": "Discourse",
6
6
  "license": "MIT",
@@ -36,7 +36,7 @@
36
36
  "@babel/eslint-parser": "^7.25.8",
37
37
  "@babel/plugin-proposal-decorators": "^7.25.7",
38
38
  "ember-template-lint": "^6.0.0",
39
- "eslint": "^8.57.0",
39
+ "eslint": "8.57.1",
40
40
  "eslint-plugin-decorator-position": "^5.0.2",
41
41
  "eslint-plugin-ember": "^12.2.1",
42
42
  "eslint-plugin-qunit": "^8.1.2",
@@ -49,7 +49,7 @@
49
49
  },
50
50
  "peerDependencies": {
51
51
  "ember-template-lint": "6.0.0",
52
- "eslint": "8.57.0",
52
+ "eslint": "8.57.1",
53
53
  "prettier": "2.8.8"
54
54
  }
55
55
  }