From 0afe98afe030c5ef8dfce6e66555163f138cf4bc Mon Sep 17 00:00:00 2001 From: Nikolay Gagarinov Date: Fri, 22 Sep 2023 14:44:04 +0500 Subject: [PATCH] fix eslintrc --- .eslintrc.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.eslintrc.yml b/.eslintrc.yml index 2d5fde437..a7c96e89e 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -8,7 +8,7 @@ plugins: extends: - airbnb - - "plugin:functional/external-recommended" + - "plugin:functional/external-vanilla-recommended" - "plugin:functional/recommended" - "plugin:react/recommended" - "plugin:react-hooks/recommended" @@ -28,6 +28,9 @@ rules: functional/functional-parameters: 0 functional/no-try-statement: 0 functional/no-throw-statement: 0 + functional/no-return-void: 0 + functional/no-conditional-statements: 0 + functional/no-expression-statements: 0 no-underscore-dangle: [2, { "allow": ["__filename", "__dirname"] }] testing-library/no-debug: 0 - react/function-component-definition: 0 \ No newline at end of file + react/function-component-definition: 0