Skip to content

Commit

Permalink
Update .eslintrc.js
Browse files Browse the repository at this point in the history
Added `tests` and `.github` dirs to the overrides removing check for `no-async-await`

See: #13604
  • Loading branch information
radoslawkrzemien committed Aug 30, 2023
1 parent 7799937 commit ffcd370
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
Expand Down

0 comments on commit ffcd370

Please sign in to comment.