From 39a751990f0bcee1336c494a1d5819df5b4be5f4 Mon Sep 17 00:00:00 2001 From: amresh-kumar-singh Date: Fri, 26 Apr 2024 14:27:17 +0530 Subject: [PATCH] fix: End of line linter issue --- .eslintrc.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 83efecc..58a66b1 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -16,7 +16,12 @@ module.exports = { }, plugins: ['@typescript-eslint', 'prettier'], rules: { - 'prettier/prettier': ['error'], + 'prettier/prettier': [ + 'error', + { + endOfLine: 'auto', + }, + ], 'consistent-return': 'off', 'arrow-parens': 'off', },