From 3cbfe5dc70153ed053ba0c6d0e42f7d0585cad99 Mon Sep 17 00:00:00 2001 From: Redume Date: Sun, 2 Mar 2025 22:01:54 +0300 Subject: [PATCH] fix: Fix line endings from CRLF to LF to comply with Prettier and ESLint rules --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 09ff85b..46ff384 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -17,7 +17,8 @@ module.exports = { 'error', { singleQuote: true, parser: "flow", - tabWidth: 4 + tabWidth: 4, + endOfLine: 'lf' }, ], },