From 91bd8679ba73ad0358360f3f1e9c0bd566e8f5cc Mon Sep 17 00:00:00 2001 From: Lone Iversen <108085781+loivsen@users.noreply.github.com> Date: Fri, 5 Jul 2024 11:39:26 +0200 Subject: [PATCH] ESLint linebreak on windows --- src/Umbraco.Web.UI.Client/eslint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Umbraco.Web.UI.Client/eslint.config.js b/src/Umbraco.Web.UI.Client/eslint.config.js index 3edaa890a5..e3bd4118c6 100644 --- a/src/Umbraco.Web.UI.Client/eslint.config.js +++ b/src/Umbraco.Web.UI.Client/eslint.config.js @@ -47,6 +47,7 @@ export default [ }, rules: { semi: ['warn', 'always'], + "prettier/prettier": ["warn", {"endOfLine": "auto" }], 'no-unused-vars': 'off', //Let '@typescript-eslint/no-unused-vars' catch the errors to allow unused function parameters (ex: in interfaces) 'no-var': 'error', 'import/no-unresolved': 'off',