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"
      ]
    }
  }
}
Was this page helpful?