From 3fa00e80a3c397466f4e4c2b833e2d21ee548ca1 Mon Sep 17 00:00:00 2001 From: 6drf21e Date: Mon, 25 Mar 2024 14:36:53 +0800 Subject: [PATCH] Due to line ending differences between Windows and Unix systems --- web/.eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/.eslintrc.json b/web/.eslintrc.json index d531502..ef577ce 100644 --- a/web/.eslintrc.json +++ b/web/.eslintrc.json @@ -5,6 +5,7 @@ "plugin:prettier/recommended" ], "rules": { - "unused-imports/no-unused-imports": "error" + "unused-imports/no-unused-imports": "error", + "prettier/prettier": ["error", { "endOfLine": "auto" }] } }