From 8cab49fb97cc284ede8fe6767fafa885605a4aeb Mon Sep 17 00:00:00 2001 From: shreve Date: Fri, 22 Nov 2024 12:32:35 -0800 Subject: [PATCH] feat: remove deprecated eslintrc.json config --- .eslintrc.json | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 68910c8b..00000000 --- a/.eslintrc.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "env": { - "browser": true, - "node": true, - "es6": true, - "jquery": true - }, - "extends": [ - "eslint:recommended", - "prettier", - "plugin:jest/recommended", - "plugin:@typescript-eslint/eslint-recommended", - "plugin:@typescript-eslint/recommended" - ], - "plugins": [ - "prettier", - "jest", - "ejs", - "@typescript-eslint" - ], - "globals": { - "Atomics": "readonly", - "SharedArrayBuffer": "readonly", - "jest/globals": true - }, - "parser": "@typescript-eslint/parser", - "parserOptions": { - "ecmaVersion": 2018 - }, - "rules": { - "no-unused-vars": [ - "error", - { - "argsIgnorePattern": "^_" - } - ], - "prettier/prettier": [ - "error" - ], - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-var-requires": "warn" - }, - "ignorePatterns": [ - "dist/**/*.js" - ] -}