From ffcd370b591df6221726cc6ebfcc1cbae3b870f6 Mon Sep 17 00:00:00 2001 From: Radoslaw Krzemien Date: Wed, 30 Aug 2023 08:25:30 +0200 Subject: [PATCH] Update .eslintrc.js Added `tests` and `.github` dirs to the overrides removing check for `no-async-await` See: https://github.com/Expensify/App/issues/13604 --- .eslintrc.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 449eca32c05e..7f8bc4a35fc6 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -164,7 +164,11 @@ module.exports = { }, }, { - files: ['workflow_tests/**/*.js'], + files: [ + 'workflow_tests/**/*.{js,jsx,ts,tsx}', + 'tests/**/*.{js,jsx,ts,tsx}', + '.github/**/*.{js,jsx,ts,tsx}' + ], rules: { '@lwc/lwc/no-async-await': 'off', },