chore: update deps, apply updated eslint ocnfig

This commit is contained in:
2023-10-10 16:43:55 +02:00
parent d430ee54e2
commit c6aab409b8
70 changed files with 3131 additions and 3160 deletions

View File

@@ -1,10 +1,17 @@
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']
"no-console": ["warn", {
allow: ["warn", "error"]
}],
"myPlugin/no-wrong-redux-import": "error"
}
},
overrides: [{
"files": ["**/*.stories.tsx"],
"rules": {
"react-hooks/rules-of-hooks": "off",
'no-console': 'off'
}
}]
};