We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25ad9e0 commit bd46734Copy full SHA for bd46734
eslint.config.mjs
@@ -1,5 +1,23 @@
1
import nextObusk from "@obusk/eslint-config-next";
2
3
-const eslintConfig = [...nextObusk];
+const eslintConfig = [
4
+ ...nextObusk,
5
+ {
6
+ name: "Temporary Overrides",
7
+ // Temporarily disable all failing rules to be fixed 1 by 1
8
+ rules: {
9
+ "react-hooks/immutability": "off",
10
+ "prefer-const": "off",
11
+ "react-hooks/set-state-in-effect": "off",
12
+ "@typescript-eslint/no-unused-vars": "off",
13
+ "react-hooks/refs": "off",
14
+ "@typescript-eslint/no-explicit-any": "off",
15
+ "no-var": "off",
16
+ "@typescript-eslint/ban-ts-comment": "off",
17
+ "@typescript-eslint/no-unused-expressions": "off",
18
+ "@typescript-eslint/no-require-imports": "off",
19
+ },
20
21
+];
22
23
export default eslintConfig;
0 commit comments