From 1310f4a4a4373cd37af7ec236da7bf4dec6579a2 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 17 Oct 2024 03:03:30 +0200 Subject: [PATCH] Configure lint rules --- deno.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/deno.json b/deno.json index b9438cd..5cbf232 100644 --- a/deno.json +++ b/deno.json @@ -11,5 +11,15 @@ }, "unstable": [ "temporal" - ] + ], + "lint": { + "rules": { + "exclude": [ + "no-implicit-any", + "no-explicit-any", + "no-inner-declarations", + "no-var" + ] + } + } }