diff --git a/.eslintrc.js b/.eslintrc.js index e43fe8cf..8178cf45 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -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: [],