From 2778bdcec05a0ca0cb09abd0ecef8f16ba7b9856 Mon Sep 17 00:00:00 2001 From: RohitKini <57343193+RohitKini@users.noreply.github.com> Date: Thu, 3 Apr 2025 15:21:56 +0530 Subject: [PATCH] checking workflow for sitecore --- .github/workflows/repo-sync.yml | 44 ++++++++++++++++----------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/repo-sync.yml b/.github/workflows/repo-sync.yml index 40e0e3a4e..94693aa42 100644 --- a/.github/workflows/repo-sync.yml +++ b/.github/workflows/repo-sync.yml @@ -108,29 +108,29 @@ jobs: const globals = require("globals"); const tsPlugin = require("@typescript-eslint/eslint-plugin"); - module.exports = [ - js.configs.recommended, - { - languageOptions: { - ecmaVersion: "latest", - sourceType: "module", - globals: globals.node, - parser: require.resolve("@typescript-eslint/parser"), - }, - plugins: { - "@typescript-eslint": tsPlugin, - }, - rules: { - "no-unused-vars": "warn", - "no-console": "off", - "@typescript-eslint/no-var-requires": "off", - "no-prototype-builtins": "off", - "@typescript-eslint/no-explicit-any": "off", - "no-constant-condition": "off" - } + module.exports = [ + js.configs.recommended, + { + languageOptions: { + ecmaVersion: "latest", + sourceType: "module", + globals: globals.node, + parser: require.resolve("@typescript-eslint/parser"), + }, + plugins: { + "@typescript-eslint": tsPlugin, + }, + rules: { + "no-unused-vars": "warn", + "no-console": "off", + "@typescript-eslint/no-var-requires": "off", + "no-prototype-builtins": "off", + "@typescript-eslint/no-explicit-any": "off", + "no-constant-condition": "off" } - ] - EOL + } + ]; + EOL fi # # Remove unused imports and missing file references