Skip to content

Commit

Permalink
feat: review and enable new eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgroshkov committed Jul 22, 2024
1 parent 98833a6 commit cbe42bd
Show file tree
Hide file tree
Showing 4 changed files with 116 additions and 80 deletions.
11 changes: 10 additions & 1 deletion cfg/eslint-rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,8 @@ module.exports = {
'no-shadow-restricted-names': 2,
'no-sparse-arrays': 2,
'no-this-before-super': 2,
'no-throw-literal': 2,
'no-throw-literal': 0,
'@typescript-eslint/only-throw-error': 2,
'no-undef': 0, // covered by TS, conflicts with typescript-eslint
'no-undef-init': 2,
'no-underscore-dangle': 0,
Expand Down Expand Up @@ -354,6 +355,9 @@ module.exports = {
],
'@typescript-eslint/array-type': 2,
'@typescript-eslint/prefer-regexp-exec': 0, // auto-fixer breaks code sometimes!
'@typescript-eslint/prefer-find': 2,
'prefer-promise-reject-errors': 0,
'@typescript-eslint/prefer-promise-reject-errors': 2,
'arrow-parens': [2, 'as-needed'],
'arrow-body-style': 0,
'unicorn/no-array-callback-reference': 0, // false positives
Expand Down Expand Up @@ -405,6 +409,11 @@ module.exports = {
'@typescript-eslint/no-unsafe-assignment': 0,
'@typescript-eslint/no-unsafe-member-access': 0,
'@typescript-eslint/no-unsafe-call': 0,
'@typescript-eslint/no-unsafe-function-type': 2,
'@typescript-eslint/no-wrapper-object-types': 2,
'@typescript-eslint/no-empty-object-type': 2,
'@typescript-eslint/no-unnecessary-template-expression': 2,
'@typescript-eslint/no-unnecessary-parameter-property-assignment': 2,
'@typescript-eslint/restrict-template-expressions': 0,
'@typescript-eslint/no-unsafe-return': 0,
'@typescript-eslint/restrict-plus-operands': 0,
Expand Down
33 changes: 30 additions & 3 deletions src/test/cfg/eslint.config.dump.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"language": "@/js",
"languageOptions": {
"ecmaVersion": "latest",
"parser": "typescript-eslint/parser@7.16.1",
"parser": "typescript-eslint/parser@7.17.0",
"parserOptions": {
"ecmaVersion": "latest",
"extraFileExtensions": {
Expand All @@ -18,7 +18,7 @@
},
"plugins": [
"@",
"@typescript-eslint:@typescript-eslint/eslint-plugin@7.16.1",
"@typescript-eslint:@typescript-eslint/eslint-plugin@7.17.0",
"unicorn:eslint-plugin-unicorn@54.0.0",
"vue:eslint-plugin-vue@9.27.0",
"import",
Expand Down Expand Up @@ -283,6 +283,9 @@
"@typescript-eslint/no-empty-interface": [
0
],
"@typescript-eslint/no-empty-object-type": [
2
],
"@typescript-eslint/no-explicit-any": [
0
],
Expand Down Expand Up @@ -346,9 +349,15 @@
"@typescript-eslint/no-unnecessary-boolean-literal-compare": [
2
],
"@typescript-eslint/no-unnecessary-parameter-property-assignment": [
2
],
"@typescript-eslint/no-unnecessary-qualifier": [
2
],
"@typescript-eslint/no-unnecessary-template-expression": [
2
],
"@typescript-eslint/no-unnecessary-type-assertion": [
2
],
Expand All @@ -370,6 +379,9 @@
"@typescript-eslint/no-unsafe-enum-comparison": [
0
],
"@typescript-eslint/no-unsafe-function-type": [
2
],
"@typescript-eslint/no-unsafe-member-access": [
0
],
Expand All @@ -389,18 +401,27 @@
"@typescript-eslint/no-var-requires": [
0
],
"@typescript-eslint/no-wrapper-object-types": [
2
],
"@typescript-eslint/non-nullable-type-assertion-style": [
2
],
"@typescript-eslint/object-curly-spacing": [
0
],
"@typescript-eslint/only-throw-error": [
2
],
"@typescript-eslint/prefer-as-const": [
2
],
"@typescript-eslint/prefer-enum-initializers": [
2
],
"@typescript-eslint/prefer-find": [
2
],
"@typescript-eslint/prefer-for-of": [
2
],
Expand All @@ -422,6 +443,9 @@
"@typescript-eslint/prefer-optional-chain": [
2
],
"@typescript-eslint/prefer-promise-reject-errors": [
2
],
"@typescript-eslint/prefer-reduce-type-parameter": [
0
],
Expand Down Expand Up @@ -1014,7 +1038,7 @@
2
],
"no-throw-literal": [
2
0
],
"no-trailing-spaces": [
0
Expand Down Expand Up @@ -1120,6 +1144,9 @@
"ignoreReadBeforeAssign": false
}
],
"prefer-promise-reject-errors": [
0
],
"prefer-rest-params": [
2
],
Expand Down
4 changes: 2 additions & 2 deletions src/util/jest.util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export function runJest(opt: RunJestOpt = {}): void {
const availableParallelism = os.availableParallelism?.()
const cpus = os.cpus().length
console.log(
`${dimGrey(
dimGrey(
Object.entries({
node,
NODE_OPTIONS,
Expand All @@ -147,7 +147,7 @@ export function runJest(opt: RunJestOpt = {}): void {
})
.map(([k, v]) => `${k}: ${v}`)
.join(', '),
)}`,
),
)

if (JEST_SHARDS) {
Expand Down
148 changes: 74 additions & 74 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -511,9 +511,9 @@
integrity sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==

"@eslint/config-array@^0.17.0":
version "0.17.0"
resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.17.0.tgz#ff305e1ee618a00e6e5d0485454c8d92d94a860d"
integrity sha512-A68TBu6/1mHHuc5YJL0U0VVeGNiklLAL6rRmhTCP2B5XjWLMnrX+HkO+IAXyHvks5cyyY1jjK5ITPQ1HGS2EVA==
version "0.17.1"
resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.17.1.tgz#d9b8b8b6b946f47388f32bedfd3adf29ca8f8910"
integrity sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==
dependencies:
"@eslint/object-schema" "^2.1.4"
debug "^4.3.1"
Expand Down Expand Up @@ -834,9 +834,9 @@
zod "^3.20.2"

"@naturalcycles/nodejs-lib@^13.0.1":
version "13.30.2"
resolved "https://registry.yarnpkg.com/@naturalcycles/nodejs-lib/-/nodejs-lib-13.30.2.tgz#3be9cd4bf671337e1ff4862326375bff14bc0875"
integrity sha512-JLZWxWB3t9MRPLA2o1oFkECL4+huyyjrEescX8PoxRlhPsLd/HejSxWvHp3Tcz0qFhTYNNXmjhfG3PDeXJGgWQ==
version "13.31.0"
resolved "https://registry.yarnpkg.com/@naturalcycles/nodejs-lib/-/nodejs-lib-13.31.0.tgz#320b5abc68861f72617cf80a60581e4d64c8d07b"
integrity sha512-yD5VczYhnG8Grshl+LuHCZcOusXwGxUW9jIvAHCRgT+118cBNeWn8rAEz0LJNKKcAu83XCUe3A68oSKVbYk7pw==
dependencies:
"@naturalcycles/js-lib" "^14.244.0"
"@types/js-yaml" "^4.0.9"
Expand Down Expand Up @@ -1081,85 +1081,85 @@
dependencies:
"@types/yargs-parser" "*"

"@typescript-eslint/eslint-plugin@7.16.1":
version "7.16.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.16.1.tgz#f5f5da52db674b1f2cdb9d5f3644e5b2ec750465"
integrity sha512-SxdPak/5bO0EnGktV05+Hq8oatjAYVY3Zh2bye9pGZy6+jwyR3LG3YKkV4YatlsgqXP28BTeVm9pqwJM96vf2A==
"@typescript-eslint/eslint-plugin@7.17.0":
version "7.17.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.17.0.tgz#c8ed1af1ad2928ede5cdd207f7e3090499e1f77b"
integrity sha512-pyiDhEuLM3PuANxH7uNYan1AaFs5XE0zw1hq69JBvGvE7gSuEoQl1ydtEe/XQeoC3GQxLXyOVa5kNOATgM638A==
dependencies:
"@eslint-community/regexpp" "^4.10.0"
"@typescript-eslint/scope-manager" "7.16.1"
"@typescript-eslint/type-utils" "7.16.1"
"@typescript-eslint/utils" "7.16.1"
"@typescript-eslint/visitor-keys" "7.16.1"
"@typescript-eslint/scope-manager" "7.17.0"
"@typescript-eslint/type-utils" "7.17.0"
"@typescript-eslint/utils" "7.17.0"
"@typescript-eslint/visitor-keys" "7.17.0"
graphemer "^1.4.0"
ignore "^5.3.1"
natural-compare "^1.4.0"
ts-api-utils "^1.3.0"

"@typescript-eslint/parser@7.16.1":
version "7.16.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-7.16.1.tgz#84c581cf86c8b2becd48d33ddc41a6303d57b274"
integrity sha512-u+1Qx86jfGQ5i4JjK33/FnawZRpsLxRnKzGE6EABZ40KxVT/vWsiZFEBBHjFOljmmV3MBYOHEKi0Jm9hbAOClA==
"@typescript-eslint/parser@7.17.0":
version "7.17.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-7.17.0.tgz#be8e32c159190cd40a305a2121220eadea5a88e7"
integrity sha512-puiYfGeg5Ydop8eusb/Hy1k7QmOU6X3nvsqCgzrB2K4qMavK//21+PzNE8qeECgNOIoertJPUC1SpegHDI515A==
dependencies:
"@typescript-eslint/scope-manager" "7.16.1"
"@typescript-eslint/types" "7.16.1"
"@typescript-eslint/typescript-estree" "7.16.1"
"@typescript-eslint/visitor-keys" "7.16.1"
"@typescript-eslint/scope-manager" "7.17.0"
"@typescript-eslint/types" "7.17.0"
"@typescript-eslint/typescript-estree" "7.17.0"
"@typescript-eslint/visitor-keys" "7.17.0"
debug "^4.3.4"

"@typescript-eslint/scope-manager@7.16.1":
version "7.16.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-7.16.1.tgz#2b43041caabf8ddd74512b8b550b9fc53ca3afa1"
integrity sha512-nYpyv6ALte18gbMz323RM+vpFpTjfNdyakbf3nsLvF43uF9KeNC289SUEW3QLZ1xPtyINJ1dIsZOuWuSRIWygw==
"@typescript-eslint/scope-manager@7.17.0":
version "7.17.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-7.17.0.tgz#e072d0f914662a7bfd6c058165e3c2b35ea26b9d"
integrity sha512-0P2jTTqyxWp9HiKLu/Vemr2Rg1Xb5B7uHItdVZ6iAenXmPo4SZ86yOPCJwMqpCyaMiEHTNqizHfsbmCFT1x9SA==
dependencies:
"@typescript-eslint/types" "7.16.1"
"@typescript-eslint/visitor-keys" "7.16.1"
"@typescript-eslint/types" "7.17.0"
"@typescript-eslint/visitor-keys" "7.17.0"

"@typescript-eslint/type-utils@7.16.1":
version "7.16.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-7.16.1.tgz#4d7ae4f3d9e3c8cbdabae91609b1a431de6aa6ca"
integrity sha512-rbu/H2MWXN4SkjIIyWcmYBjlp55VT+1G3duFOIukTNFxr9PI35pLc2ydwAfejCEitCv4uztA07q0QWanOHC7dA==
"@typescript-eslint/type-utils@7.17.0":
version "7.17.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-7.17.0.tgz#c5da78feb134c9c9978cbe89e2b1a589ed22091a"
integrity sha512-XD3aaBt+orgkM/7Cei0XNEm1vwUxQ958AOLALzPlbPqb8C1G8PZK85tND7Jpe69Wualri81PLU+Zc48GVKIMMA==
dependencies:
"@typescript-eslint/typescript-estree" "7.16.1"
"@typescript-eslint/utils" "7.16.1"
"@typescript-eslint/typescript-estree" "7.17.0"
"@typescript-eslint/utils" "7.17.0"
debug "^4.3.4"
ts-api-utils "^1.3.0"

"@typescript-eslint/types@7.16.1":
version "7.16.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.16.1.tgz#bbab066276d18e398bc64067b23f1ce84dfc6d8c"
integrity sha512-AQn9XqCzUXd4bAVEsAXM/Izk11Wx2u4H3BAfQVhSfzfDOm/wAON9nP7J5rpkCxts7E5TELmN845xTUCQrD1xIQ==
"@typescript-eslint/types@7.17.0":
version "7.17.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.17.0.tgz#7ce8185bdf06bc3494e73d143dbf3293111b9cff"
integrity sha512-a29Ir0EbyKTKHnZWbNsrc/gqfIBqYPwj3F2M+jWE/9bqfEHg0AMtXzkbUkOG6QgEScxh2+Pz9OXe11jHDnHR7A==

"@typescript-eslint/typescript-estree@7.16.1":
version "7.16.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-7.16.1.tgz#9b145ba4fd1dde1986697e1ce57dc501a1736dd3"
integrity sha512-0vFPk8tMjj6apaAZ1HlwM8w7jbghC8jc1aRNJG5vN8Ym5miyhTQGMqU++kuBFDNKe9NcPeZ6x0zfSzV8xC1UlQ==
"@typescript-eslint/typescript-estree@7.17.0":
version "7.17.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-7.17.0.tgz#dcab3fea4c07482329dd6107d3c6480e228e4130"
integrity sha512-72I3TGq93t2GoSBWI093wmKo0n6/b7O4j9o8U+f65TVD0FS6bI2180X5eGEr8MA8PhKMvYe9myZJquUT2JkCZw==
dependencies:
"@typescript-eslint/types" "7.16.1"
"@typescript-eslint/visitor-keys" "7.16.1"
"@typescript-eslint/types" "7.17.0"
"@typescript-eslint/visitor-keys" "7.17.0"
debug "^4.3.4"
globby "^11.1.0"
is-glob "^4.0.3"
minimatch "^9.0.4"
semver "^7.6.0"
ts-api-utils "^1.3.0"

"@typescript-eslint/utils@7.16.1", "@typescript-eslint/utils@^6.0.0 || ^7.0.0":
version "7.16.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-7.16.1.tgz#df42dc8ca5a4603016fd102db0346cdab415cdb7"
integrity sha512-WrFM8nzCowV0he0RlkotGDujx78xudsxnGMBHI88l5J8wEhED6yBwaSLP99ygfrzAjsQvcYQ94quDwI0d7E1fA==
"@typescript-eslint/utils@7.17.0", "@typescript-eslint/utils@^6.0.0 || ^7.0.0":
version "7.17.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-7.17.0.tgz#815cd85b9001845d41b699b0ce4f92d6dfb84902"
integrity sha512-r+JFlm5NdB+JXc7aWWZ3fKSm1gn0pkswEwIYsrGPdsT2GjsRATAKXiNtp3vgAAO1xZhX8alIOEQnNMl3kbTgJw==
dependencies:
"@eslint-community/eslint-utils" "^4.4.0"
"@typescript-eslint/scope-manager" "7.16.1"
"@typescript-eslint/types" "7.16.1"
"@typescript-eslint/typescript-estree" "7.16.1"
"@typescript-eslint/scope-manager" "7.17.0"
"@typescript-eslint/types" "7.17.0"
"@typescript-eslint/typescript-estree" "7.17.0"

"@typescript-eslint/visitor-keys@7.16.1":
version "7.16.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-7.16.1.tgz#4287bcf44c34df811ff3bb4d269be6cfc7d8c74b"
integrity sha512-Qlzzx4sE4u3FsHTPQAAQFJFNOuqtuY0LFrZHwQ8IHK705XxBiWOFkfKRWu6niB7hwfgnwIpO4jTC75ozW1PHWg==
"@typescript-eslint/visitor-keys@7.17.0":
version "7.17.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-7.17.0.tgz#680465c734be30969e564b4647f38d6cdf49bfb0"
integrity sha512-RVGC9UhPOCsfCdI9pU++K4nD7to+jTcMIbXTSOcrLqUEW6gF2pU1UUbYJKc9cvcRSK1UDeMJ7pdMxf4bhMpV/A==
dependencies:
"@typescript-eslint/types" "7.16.1"
"@typescript-eslint/types" "7.17.0"
eslint-visitor-keys "^3.4.3"

JSONStream@^1.3.5:
Expand Down Expand Up @@ -1553,9 +1553,9 @@ camelcase@^6.2.0:
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==

caniuse-lite@^1.0.30001640:
version "1.0.30001642"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001642.tgz#6aa6610eb24067c246d30c57f055a9d0a7f8d05f"
integrity sha512-3XQ0DoRgLijXJErLSl+bLnJ+Et4KqV1PY6JJBGAFlsNsz31zeAIncyeZfLCabHK/jtSh+671RM9YMldxjUPZtA==
version "1.0.30001643"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001643.tgz#9c004caef315de9452ab970c3da71085f8241dbd"
integrity sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==

chalk@^2.4.2:
version "2.4.2"
Expand Down Expand Up @@ -2182,9 +2182,9 @@ eslint-plugin-unicorn@^54.0.0:
strip-indent "^3.0.0"

eslint-plugin-unused-imports@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-4.0.0.tgz#93f3a7ee6088221e4a1d7127866e05d5917a9f65"
integrity sha512-mzM+y2B7XYpQryVa1usT+Y/BdNAtAZiXzwpSyDCboFoJN/LZRN67TNvQxKtuTK/Aplya3sLNQforiubzPPaIcQ==
version "4.0.1"
resolved "https://registry.yarnpkg.com/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-4.0.1.tgz#b78916ecb82ae6d0f54efb33879c6c7ecb52f080"
integrity sha512-rax76s05z64uQgG9YXsWFmXrgjkaK79AvfeAWiSxhPP6RVGxeRaj4+2u+wxxu/mDy2pmJoOy1QTOEALMia2xGQ==
dependencies:
eslint-rule-composer "^0.3.0"

Expand Down Expand Up @@ -2799,9 +2799,9 @@ import-fresh@^3.2.1, import-fresh@^3.3.0:
resolve-from "^4.0.0"

import-local@^3.0.2:
version "3.1.0"
resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4"
integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==
version "3.2.0"
resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.2.0.tgz#c3d5c745798c02a6f8b897726aba5100186ee260"
integrity sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==
dependencies:
pkg-dir "^4.2.0"
resolve-cwd "^3.0.0"
Expand Down Expand Up @@ -3961,9 +3961,9 @@ node-int64@^0.4.0:
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==

node-releases@^2.0.14:
version "2.0.17"
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.17.tgz#d74bc4fec38d839eec5db2a3c9c963d4f33cb366"
integrity sha512-Ww6ZlOiEQfPfXM45v17oabk77Z7mg5bOt7AjDyzy7RjK9OrLrLC8dyZQoAPEOtFX9SaNf1Tdvr5gRJWdTJj7GA==
version "2.0.18"
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f"
integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==

normalize-package-data@^2.5.0:
version "2.5.0"
Expand Down Expand Up @@ -5094,13 +5094,13 @@ typed-array-length@^1.0.6:
possible-typed-array-names "^1.0.0"

typescript-eslint@^7.16.1:
version "7.16.1"
resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-7.16.1.tgz#4855e11985b3dbd13a94b4e7e6523b2ec5d1c759"
integrity sha512-889oE5qELj65q/tGeOSvlreNKhimitFwZqQ0o7PcWC7/lgRkAMknznsCsV8J8mZGTP/Z+cIbX8accf2DE33hrA==
version "7.17.0"
resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-7.17.0.tgz#cc5eddafd38b3c1fe8a52826469d5c78700b7aa7"
integrity sha512-spQxsQvPguduCUfyUvLItvKqK3l8KJ/kqs5Pb/URtzQ5AC53Z6us32St37rpmlt2uESG23lOFpV4UErrmy4dZQ==
dependencies:
"@typescript-eslint/eslint-plugin" "7.16.1"
"@typescript-eslint/parser" "7.16.1"
"@typescript-eslint/utils" "7.16.1"
"@typescript-eslint/eslint-plugin" "7.17.0"
"@typescript-eslint/parser" "7.17.0"
"@typescript-eslint/utils" "7.17.0"

typescript@^5.0.2:
version "5.5.3"
Expand Down

0 comments on commit cbe42bd

Please sign in to comment.