From 4b68a00aa48f61a47b7c201cc60c169c0cca1aaf Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 12:54:11 +0000 Subject: [PATCH] fix: resolve CI/CD lint and configuration issues --- .eslintrc.json | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 30aa785..08581f4 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,16 +1,11 @@ { + "root": true, "parser": "@typescript-eslint/parser", - "parserOptions": { - "ecmaVersion": "2022", - "sourceType": "module" - }, + "plugins": ["@typescript-eslint"], "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], - "env": { - "node": true, - "es2022": true - }, "rules": { "@typescript-eslint/no-explicit-any": "warn", - "@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }] - } -} \ No newline at end of file + "@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }] + }, + "ignorePatterns": ["dist/", "node_modules/"] +}