Skip to content

Commit

Permalink
fix: match return-await behavior to airbnb-base (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
lotap committed Mar 10, 2022
1 parent d30b7d2 commit 71f3e59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/shared.js
Expand Up @@ -208,7 +208,7 @@ module.exports = {
// Replace Airbnb 'no-return-await' rule with '@typescript-eslint' version
// https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/return-await.md
'no-return-await': 'off',
'@typescript-eslint/return-await': baseBestPracticesRules['no-return-await'],
'@typescript-eslint/return-await': [baseBestPracticesRules['no-return-await'], 'never'],

// Replace Airbnb 'space-infix-ops' rule with '@typescript-eslint' version
// https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/space-infix-ops.md
Expand Down

0 comments on commit 71f3e59

Please sign in to comment.