From 7d0720d55fe1ed31f11b3b1a5563130ee21c9b47 Mon Sep 17 00:00:00 2001 From: Mononaut Date: Mon, 24 Jun 2024 02:16:59 +0000 Subject: [PATCH] no trailing spaces --- backend/.eslintrc | 3 ++- frontend/.eslintrc | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/backend/.eslintrc b/backend/.eslintrc index c0f25066b..a9b16ef9d 100644 --- a/backend/.eslintrc +++ b/backend/.eslintrc @@ -34,6 +34,7 @@ "quotes": [1, "single", { "allowTemplateLiterals": true }], "semi": 1, "curly": [1, "all"], - "eqeqeq": 1 + "eqeqeq": 1, + "no-trailing-spaces": 1 } } diff --git a/frontend/.eslintrc b/frontend/.eslintrc index d47d4fe9b..5162bf474 100644 --- a/frontend/.eslintrc +++ b/frontend/.eslintrc @@ -35,6 +35,7 @@ "quotes": [1, "single", { "allowTemplateLiterals": true }], "semi": 1, "curly": [1, "all"], - "eqeqeq": 1 + "eqeqeq": 1, + "no-trailing-spaces": 1 } }