From 954d5b358f5b9f9d65cf2c1d8db68e3d940a7899 Mon Sep 17 00:00:00 2001 From: Andres Date: Tue, 10 Oct 2023 16:47:52 +0200 Subject: [PATCH] chore: update deps, apply updated eslint config --- .eslintrc.cjs | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index b0cb945..438be23 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1,17 +1,16 @@ module.exports = { - extends: ["@it-incubator/eslint-config", "plugin:storybook/recommended"], - plugins: ["myPlugin"], + extends: ['@it-incubator/eslint-config', 'plugin:storybook/recommended'], + plugins: ['myPlugin'], rules: { - "no-console": ["warn", { - allow: ["warn", "error"] - }], - "myPlugin/no-wrong-redux-import": "error" + 'myPlugin/no-wrong-redux-import': 'error', }, - overrides: [{ - "files": ["**/*.stories.tsx"], - "rules": { - "react-hooks/rules-of-hooks": "off", - 'no-console': 'off' - } - }] -}; \ No newline at end of file + overrides: [ + { + files: ['**/*.stories.tsx'], + rules: { + 'react-hooks/rules-of-hooks': 'off', + 'no-console': 'off', + }, + }, + ], +}