Skip to content

Commit 6fdbec0

Browse files
authored
tweaked no-explicit-any linting options
I changed the options for the rule to disallow using "any" types explicitly to be more useful.
1 parent bea1e73 commit 6fdbec0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.eslintrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ module.exports = {
2424
}
2525
},
2626
"rules": {
27-
"@typescript-eslint/no-explicit-any": ["error"]
27+
"@typescript-eslint/no-explicit-any": ["error", { "ignoreRestArgs": false, "fixToUnknown": false }]
2828
}
29-
};
29+
};

0 commit comments

Comments
 (0)