diff --git a/.eslintrc.js b/.eslintrc.js index d691689a..e43fe8cf 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -52,6 +52,10 @@ module.exports = { }, ], 'arrow-parens': 'off', + // Avoiding default exports is recommended (https://dev.to/phuocng/avoid-using-default-exports-a1c) + // 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', 'jsx-a11y/label-has-associated-control': ['error', { labelComponents: [], labelAttributes: [],