From 2a234af1145c3e90659cc0097ce78f5fd7d721d5 Mon Sep 17 00:00:00 2001 From: alexrecuenco Date: Sat, 5 Oct 2024 22:39:44 +0200 Subject: [PATCH] Remove unnecessary deps --- eslint.config.mjs | 3 +-- package-lock.json | 2 -- package.json | 2 -- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index c95472c..89a5874 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,7 +1,6 @@ import js from '@eslint/js'; import tseslint from 'typescript-eslint'; import eslintConfigPrettier from 'eslint-config-prettier'; -import tsParser from '@typescript-eslint/parser'; // When it works again do `npm install --save-dev eslint-plugin-import` // import imprt from 'eslint-plugin-import'; // https://github.com/eslint/eslint/issues/18087 @@ -66,7 +65,7 @@ export default [ { languageOptions: { globals: globals.node, - parser: tsParser, + parser: tseslint.parser, parserOptions: { ecmaVersion: 2022, sourceType: 'module', diff --git a/package-lock.json b/package-lock.json index 66f0e51..23e030f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,8 +13,6 @@ "@types/jest": "^29.5.3", "@types/node": "^22.7.4", "@types/supertest": "^6.0.2", - "@typescript-eslint/eslint-plugin": "^8.8.0", - "@typescript-eslint/parser": "^8.8.0", "eslint": "^9.12.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-jest": "^28.8.3", diff --git a/package.json b/package.json index c32062e..1716f5a 100644 --- a/package.json +++ b/package.json @@ -60,8 +60,6 @@ "@types/jest": "^29.5.3", "@types/node": "^22.7.4", "@types/supertest": "^6.0.2", - "@typescript-eslint/eslint-plugin": "^8.8.0", - "@typescript-eslint/parser": "^8.8.0", "eslint": "^9.12.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-jest": "^28.8.3",