From f176c0f4064f5f5d327aca469a2334b2bde30ffd Mon Sep 17 00:00:00 2001 From: Jeremy Meng Date: Thu, 2 May 2024 11:18:14 -0700 Subject: [PATCH] upgrade dev dependencies - @typescript-eslint - rimraf --- .eslintrc.js | 4 ++++ package.json | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 66a0d11..b15c3b1 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -29,6 +29,10 @@ module.exports = { "rules": { "jsdoc/check-alignment": "error", "jsdoc/check-indentation": "error", + "@typescript-eslint/no-duplicate-enum-values": "warn", + "@typescript-eslint/no-explicit-any": "warn", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-unsafe-declaration-merging": "warn" }, } ], diff --git a/package.json b/package.json index 01f73cf..e74fe93 100644 --- a/package.json +++ b/package.json @@ -30,15 +30,15 @@ "@types/debug": "^4.0.0", "@types/mocha": "^10.0.0", "@types/node": "^16.0.0", - "@typescript-eslint/eslint-plugin": "^5.59.9", - "@typescript-eslint/parser": "^5.59.9", + "@typescript-eslint/eslint-plugin": "~7.8.0", + "@typescript-eslint/parser": "~7.8.0", "chai": "^4.3.10", "dotenv": "^16.0.0", "eslint": "^8.42.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-jsdoc": "^46.2.6", "mocha": "^10.0.0", - "rimraf": "^2.6.3", + "rimraf": "^5.0.5", "ts-node": "^10.0.0", "typescript": "~5.0.4" },