From ea610bacd806a4b6dba0fd2733801dfcf6678862 Mon Sep 17 00:00:00 2001 From: LucaDulz Date: Thu, 10 Oct 2024 08:25:35 +0000 Subject: [PATCH] delete eslintrc.js --- .eslintrc.js | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .eslintrc.js diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index e9b9997..0000000 --- a/.eslintrc.js +++ /dev/null @@ -1,22 +0,0 @@ -/* eslint-env node */ -module.exports = { - root: true, - env: { - browser: true, - }, - parser: "@typescript-eslint/parser", - plugins: ["@typescript-eslint"], - extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"], - rules: { - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-non-null-assertion": "off", - "@typescript-eslint/no-unused-vars": [ - "warn", - { - argsIgnorePattern: "^_", - varsIgnorePattern: "^_", - caughtErrorsIgnorePattern: "^_", - }, - ], - }, -};