Robert Fent
Robert Fent

Reputation: 203

Deno Lint - Disable / add rules to linter


currently I'm developing the backend of my website with Deno in Typescript and I am using their linter Deno lint.
But since the beginning of my new project, I can't find out how to modify the linter properly.

Deno lint doc says that its supporting most eslint rules and my goal would be to add some rules like eol-last or eslint semi.

Does anybody has some experince with deno and it's linter and wants to share it?

Upvotes: 4

Views: 1886

Answers (1)

justjavac
justjavac

Reputation: 605

Now you can use // deno-lint-ignore-file or // deno-lint-ignore <codes...>.

Upvotes: 1

Related Questions