Skip to content
This repository was archived by the owner on Jun 8, 2022. It is now read-only.

Commit 5e1a6a2

Browse files
committed
Add 'types' to order rule to be at top of import, disable exh deps rule
1 parent b225f29 commit 5e1a6a2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.eslintrc

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,12 @@
7373
"index",
7474
"parent",
7575
"sibling"
76-
]
76+
],
77+
"pathGroups": [{
78+
"pattern": "types",
79+
"group": "builtin",
80+
"position": "before"
81+
}]
7782
}],
7883

7984
"react/jsx-tag-spacing": 2,
@@ -83,6 +88,8 @@
8388
"html": true
8489
}],
8590

91+
"react-hooks/exhaustive-deps": 0,
92+
8693
"@typescript-eslint/indent": [2, 2],
8794
"@typescript-eslint/explicit-function-return-type": [0],
8895
"@typescript-eslint/no-empty-interface": [0],

0 commit comments

Comments
 (0)