From 88652ab1aebd3693819bdf96b746ceeca5665949 Mon Sep 17 00:00:00 2001 From: theofficialomega <30985701+BellezaEmporium@users.noreply.github.com> Date: Mon, 28 Jul 2025 21:17:55 +0200 Subject: [PATCH] modify eslint configuration for CI issues --- eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 57f9e877..7d672612 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -36,7 +36,7 @@ export default [ '@typescript-eslint/no-require-imports': 'off', '@typescript-eslint/no-var-requires': 'off', 'no-case-declarations': 'off', - 'linebreak-style': ['error', 'windows'], + 'linebreak-style': ['error', process.env.CI ? 'unix' : 'windows'], quotes: [ 'error',