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();
});