From 6a12a6c7799374ca9888374748ff98480ddd509a Mon Sep 17 00:00:00 2001 From: Sam Stenvall Date: Mon, 2 Sep 2024 14:05:17 +0300 Subject: [PATCH] Disable require-await, it doesn't suit us --- eslint.config.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index 9c91a01..dc49279 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -35,6 +35,8 @@ export default [ rules: { "no-console": "error", + // We have type-hinted functions that in their dummy implementations return static data + "@typescript-eslint/require-await": "off", }, }, ]; \ No newline at end of file