Browse Source

chore: Disable prefer default export eslint rule on backend

Owen Diffey 1 year ago
parent
commit
333e27209b
1 changed files with 2 additions and 7 deletions
  1. 2 7
      backend/.eslintrc

+ 2 - 7
backend/.eslintrc

@@ -82,15 +82,10 @@
 				"selector": "WithStatement",
 				"message": "`with` is disallowed in strict mode because it makes code impossible to predict and optimize."
 			}
-		]
+		],
+		"import/prefer-default-export": "off"
 	},
 	"overrides": [
-		{
-			"files": ["src/types/*.ts"],
-			"rules": {
-				"import/prefer-default-export": "off"
-			}
-		},
 		{
 			"files": ["**/*.test.ts", "**/*.spec.ts"],
 			"rules": {