Disabling excessive linting rules #1230
Closed
kristianmandrup
started this conversation in
General
Replies: 1 comment
-
Finally figured out that Biome is an extension which I can turn off for the workspace. I was also able to adjust the eslint rules: "lint/suspicious/noExplicitAny": "off",
"lint/suspicious/no-unsafe-assignment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off" |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I've used your typescript-library-starter recently and in that process, Biome seems to have been installed which I've never used before . In that setting I was able to configure the rules to disable some of the more excessive ones that hindered my productivity.
I've now tried this service-starter template, but I'm stuck trying to make it accept this code:
I've been unable to disable the rules disallowing any and non-safe assignments which are enforced here. Meanwhile it requires
error
to be of typeany
which is illegal by the same rules, so the rules seem to be messed up!?What can I do?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions