DenoDDeno
Powered by
MajorAmariM
Denoβ€’3y agoβ€’
4 replies
MajorAmari

how to specify giving error or warning for a lint rule?

I'm new to Deno couldn't find a way to make a lint rule give error instead of error

{
"lint": {
    "include": [],
    "exclude": [],
    "rules": {
      "tags": [
        "recommended"
      ],
      "include": [
        "eqeqeq" // <-- Here for example it give warning in vscode
      ],
      "exclude": [
        "import-prefix-missing"
      ]
    }
  }
}
{
"lint": {
    "include": [],
    "exclude": [],
    "rules": {
      "tags": [
        "recommended"
      ],
      "include": [
        "eqeqeq" // <-- Here for example it give warning in vscode
      ],
      "exclude": [
        "import-prefix-missing"
      ]
    }
  }
}
Deno banner
DenoJoin
Chat about Deno, a modern runtime for JavaScript and TypeScript.
20,944Members
Resources
Recent Announcements

Similar Threads

Was this page helpful?

Similar Threads

how to specify lint rules in deno.json?
subbedSsubbed / help
2y ago
Default Lint Rules
BloxezBBloxez / help
3y ago
how to configure deno lint with additional rules + options
yoggydYyoggyd / help
3y ago