diff --git a/.eslintrc b/.eslintrc index 7eadc3743e..4e51003099 100755 --- a/.eslintrc +++ b/.eslintrc @@ -55,7 +55,16 @@ "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/no-var-requires": "off", - "promise/always-return": "off", - "@typescript-eslint/no-floating-promises": "error" - } + "promise/always-return": "off" + }, + "overrides": [ + { + "files": [ + "**/e2e/**/*.{ts,js,tsx,jsx}" + ], + "rules": { + "@typescript-eslint/no-floating-promises": "error" + } + } + ] }