Skip to content

Commit fa62975

Browse files
committed
chore: fix typo in eslint rc file
1 parent 89a542d commit fa62975

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.eslintrc.yaml

+8-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ rules:
2323
# if they are unused.
2424
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }]
2525
# For overloads.
26-
no-dupe-class-members: off
26+
no-dupe-class-members: 0
2727
"@typescript-eslint/no-use-before-define": off
2828
"@typescript-eslint/no-non-null-assertion": off
2929
"@typescript-eslint/ban-types": off
@@ -32,7 +32,13 @@ rules:
3232
"@typescript-eslint/no-explicit-any": off
3333
eqeqeq: error
3434
import/order:
35-
[error, { alphabetize: { order: "asc" }, groups: [["builtin", "external", "internal"], "parent", "sibling"] }]
35+
[
36+
error,
37+
{
38+
alphabetize: { order: "asc" },
39+
groups: [["builtin", "external", "internal"], "parent", "sibling"],
40+
},
41+
]
3642
no-async-promise-executor: off
3743
# This isn't a real module, just types, which apparently doesn't resolve.
3844
import/no-unresolved: [error, { ignore: ["express-serve-static-core"] }]

0 commit comments

Comments
 (0)