From d6742bb1fe8be12c15bc629e6ad427bf2d75a697 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Tue, 17 Mar 2026 13:28:10 +0100 Subject: [PATCH] Exclude templates from lint in cli-module-new The templates directory was excluded from linting in the @backstage/cli package but the ignore pattern was not carried over to cli-module-new. Signed-off-by: Patrik Oldsberg Made-with: Cursor --- packages/cli-module-new/.eslintrc.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/cli-module-new/.eslintrc.js b/packages/cli-module-new/.eslintrc.js index e2a53a6ad2..11a37e7a14 100644 --- a/packages/cli-module-new/.eslintrc.js +++ b/packages/cli-module-new/.eslintrc.js @@ -1 +1,3 @@ -module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); +module.exports = require('@backstage/cli/config/eslint-factory')(__dirname, { + ignorePatterns: ['templates/**'], +});