diff --git a/.eslintrc.js b/.eslintrc.js index 5c19d22..cc7f9f7 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -4,12 +4,9 @@ module.exports = { plugins: ["@typescript-eslint"], extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"], rules: { - "@typescript-eslint/no-unused-vars": [ - 2, - { args: "all", argsIgnorePattern: "^_" }, - ], "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/ban-ts-comment": "off", - "@typescript-eslint/no-var-requires": "off" + "@typescript-eslint/no-var-requires": "off", + "@typescript-eslint/no-unused-vars": "off" }, };