Skip to content

Commit

Permalink
feat: Turn off the 'no-restricted-syntax' rule which isn't relevant
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Oct 7, 2024
1 parent ef995f0 commit c5016e6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ module.exports = {
// but we had 'prefer-default-export' on for a long time so we can't turn on 'no-default-export' without causing
// a large refactor.
'import/prefer-default-export': 'off',
// There is no reason to disallow this syntax anymore; we don't use regenerator-runtime in new browsers
'no-restricted-syntax': 'off',
'jsx-a11y/label-has-associated-control': ['error', {
labelComponents: [],
labelAttributes: [],
Expand Down

0 comments on commit c5016e6

Please sign in to comment.