Skip to content

Commit

Permalink
FIX: Move template-no-let-reference rule to gjs section (#71)
Browse files Browse the repository at this point in the history
I added it to the regular js section yesterday by mistake. It's enabled only for gjs, so the entry was a no-op.
  • Loading branch information
CvX authored Oct 15, 2024
1 parent 439a008 commit 38325e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lint-configs/eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ module.exports = {
"ember/route-path-style": "off",
"ember/routes-segments-snake-case": "off",
"ember/no-replace-test-comments": "error",
"ember/template-no-let-reference": "off", // we have valid cases of using let variables in templates

"qunit/no-assert-equal-boolean": "off",
"qunit/no-assert-equal": "off",
Expand Down Expand Up @@ -255,6 +254,9 @@ module.exports = {
files: ["**/*.gjs"],
parser: "ember-eslint-parser",
extends: ["plugin:ember/recommended-gjs"],
rules: {
"ember/template-no-let-reference": "off", // we have valid cases of using let variables in templates
},
},
],
};

0 comments on commit 38325e1

Please sign in to comment.