From 1674d14453341e00739013da97bcda1db789cde3 Mon Sep 17 00:00:00 2001 From: Peter Fajdiga Date: Thu, 17 Apr 2025 20:24:26 +0200 Subject: [PATCH] eslint: allow empty functions --- eslint.config.mjs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 7017e29..1bceee0 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,7 +1,10 @@ // @ts-check -import tseslint from 'typescript-eslint'; +import tseslint from "typescript-eslint"; export default tseslint.config( - tseslint.configs.stylistic, + { + extends: [tseslint.configs.stylistic], + rules: { "@typescript-eslint/no-empty-function": "off" }, + } );