From b70cdc8a0651c3a111df047e12216928eb9a12ad Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 14 May 2022 05:30:14 +0000 Subject: [PATCH 1/2] Update dependency eslint-plugin-simple-import-sort to v7 --- package.json | 2 +- yarn.lock | 22 ++++------------------ 2 files changed, 5 insertions(+), 19 deletions(-) diff --git a/package.json b/package.json index 43870b4cf..42064d021 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "eslint-config-prettier": "6.15.0", "eslint-plugin-jest": "26.1.5", "eslint-plugin-prettier": "3.4.1", - "eslint-plugin-simple-import-sort": "4.0.0", + "eslint-plugin-simple-import-sort": "7.0.0", "jest": "25.5.4", "prettier": "2.6.2", "ts-jest": "25.5.1", diff --git a/yarn.lock b/yarn.lock index a870a333c..31c552f8c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -944,11 +944,6 @@ buffer-from@1.x, buffer-from@^1.0.0: resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== -builtins@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" - integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og= - callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -1265,12 +1260,10 @@ eslint-plugin-prettier@3.4.1: dependencies: prettier-linter-helpers "^1.0.0" -eslint-plugin-simple-import-sort@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-4.0.0.tgz#048736c170b9b43f0a8c3ef85ba53881c389f3ff" - integrity sha512-QsxOMrXhhqvSiTmZafPc/lvSET9lhblaO2kaaSbFo1FVU/AW9mFQDXadiHJ5OqG6i0N6+Qd+RZ95iQbkg4p+0w== - dependencies: - validate-npm-package-name "^3.0.0" +eslint-plugin-simple-import-sort@7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-7.0.0.tgz#a1dad262f46d2184a90095a60c66fef74727f0f8" + integrity sha512-U3vEDB5zhYPNfxT5TYR7u01dboFZp+HNpnGhkDB2g/2E4wZ/g1Q9Ton8UwCLfRV9yAKyYqDh62oHOamvkFxsvw== eslint-scope@^5.0.0: version "5.0.0" @@ -3529,13 +3522,6 @@ validate-npm-package-license@^3.0.1: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" -validate-npm-package-name@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" - integrity sha1-X6kS2B630MdK/BQN5zF/DKffQ34= - dependencies: - builtins "^1.0.3" - verror@1.10.0: version "1.10.0" resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" From 98c1d01752e2cef045bf06d8961fbd8c3b2af4ee Mon Sep 17 00:00:00 2001 From: skovhus Date: Sat, 14 May 2022 20:25:46 +0200 Subject: [PATCH 2/2] Update eslint --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 5eccb269a..7afe0550a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -49,7 +49,8 @@ module.exports = { ], 'prefer-const': 'error', 'prefer-template': 'error', - 'simple-import-sort/sort': 'error', + 'simple-import-sort/imports': 'error', + 'simple-import-sort/exports': 'error', 'object-shorthand': 'error', '@typescript-eslint/explicit-function-return-type': 'off',