From 514065e4b8d10ace356d9e17285384d34b5c56a1 Mon Sep 17 00:00:00 2001 From: yassinedorbozgithub Date: Mon, 10 Feb 2025 16:28:59 +0100 Subject: [PATCH] fix(api): introduce ESLint no-multiple-empty-lines rule --- api/.eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/api/.eslintrc.js b/api/.eslintrc.js index 317391e4..0340c221 100644 --- a/api/.eslintrc.js +++ b/api/.eslintrc.js @@ -89,5 +89,6 @@ module.exports = { ], 2, ], + 'no-multiple-empty-lines': ['error', { max: 1 }], }, };