diff --git a/.eslintrc.es5.json b/.eslintrc.es5.json index 325bac6a61..c500833e09 100644 --- a/.eslintrc.es5.json +++ b/.eslintrc.es5.json @@ -9,6 +9,7 @@ "sourceType": "module" }, "rules": { + "import/prefer-default-export": 0, // we want to stop using default exports and start using named exports "no-underscore-dangle": 0, // Backbone uses underscores, we cannot remove them "comma-dangle": ["error", "always-multiline"] } diff --git a/.eslintrc.es6.json b/.eslintrc.es6.json index dfadd77674..4788e1bef2 100644 --- a/.eslintrc.es6.json +++ b/.eslintrc.es6.json @@ -29,6 +29,7 @@ "no-only-tests/no-only-tests": 2, "no-script-url": 0, "import/extensions": 0, // we wouldn't be able to import jQuery without this line + "import/prefer-default-export": 0, // we want to stop using default exports and start using named exports "react/destructuring-assignment": 0, // that would be too many changes to fix this one "prefer-destructuring": 0, // that would be too many changes to fix this one "jsx-a11y/label-has-for": [2, { diff --git a/.eslintrc.ts.json b/.eslintrc.ts.json index 2b3df50056..3b6e716f76 100644 --- a/.eslintrc.ts.json +++ b/.eslintrc.ts.json @@ -124,6 +124,7 @@ "no-only-tests/no-only-tests": 2, "no-script-url": 0, "import/extensions": 0, // we wouldn't be able to import jQuery without this line + "import/prefer-default-export": 0, // we want to stop using default exports and start using named exports "react/destructuring-assignment": 0, // that would be too many changes to fix this one "prefer-destructuring": 0, // that would be too many changes to fix this one "jsx-a11y/label-has-for": [2, {