From c1f5fcfb26c20a125bfa1dec279b42dbc56143d6 Mon Sep 17 00:00:00 2001 From: Nosirov Behzodjon <87975515+nosirovbehzodjon@users.noreply.github.com> Date: Tue, 10 Sep 2024 08:20:48 +0300 Subject: [PATCH] fix: in .eslintrc.js file added one line rule This problem has been viewed 731k times on stack-overflow, I think this is a serious problem and we need to fix it. Source: https://stackoverflow.com/questions/53516594/why-do-i-keep-getting-eslint-delete-cr-prettier-prettier --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 259de13c7..db56292f0 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -21,5 +21,6 @@ module.exports = { '@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/no-explicit-any': 'off', + 'prettier/prettier': ['error', { endOfLine: 'auto' }] }, };