From e2d6c26c76c3175c300e8d03bddfd0c8296dde4a Mon Sep 17 00:00:00 2001 From: yelinz Date: Mon, 15 Jul 2024 08:49:51 +0200 Subject: [PATCH] chore(lint): ember-template-lint v6 downgrade render modifieres to warnings until all are removed --- .template-lintrc.js | 1 + .../ca-field-selector-list/ca-field-function-select-test.js | 2 +- .../tests/integration/components/cf-field/input/files-test.js | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.template-lintrc.js b/.template-lintrc.js index 354c05ee7..06433f3dc 100644 --- a/.template-lintrc.js +++ b/.template-lintrc.js @@ -5,6 +5,7 @@ module.exports = { plugins: ["ember-template-lint-plugin-prettier"], rules: { "no-bare-strings": true, + "no-at-ember-render-modifiers": "warn", }, overrides: [ { diff --git a/packages/analytics/tests/integration/components/ca-field-selector-list/ca-field-function-select-test.js b/packages/analytics/tests/integration/components/ca-field-selector-list/ca-field-function-select-test.js index 7425cb23d..1384d6fdd 100644 --- a/packages/analytics/tests/integration/components/ca-field-selector-list/ca-field-function-select-test.js +++ b/packages/analytics/tests/integration/components/ca-field-selector-list/ca-field-function-select-test.js @@ -26,7 +26,7 @@ module( hbs``, ); diff --git a/packages/form/tests/integration/components/cf-field/input/files-test.js b/packages/form/tests/integration/components/cf-field/input/files-test.js index 1580d48c9..a9a3080b1 100644 --- a/packages/form/tests/integration/components/cf-field/input/files-test.js +++ b/packages/form/tests/integration/components/cf-field/input/files-test.js @@ -14,7 +14,7 @@ module("Integration | Component | cf-field/input/files", function (hooks) { setupIntl(hooks, ["en"]); test("it computes the proper element id", async function (assert) { - await render(hbs``); + await render(hbs``); assert.dom("#test-id").exists(); });