modify eslint configuration for CI issues

This commit is contained in:
theofficialomega
2025-07-28 21:17:55 +02:00
parent 7afd3fe3fe
commit 88652ab1ae

View File

@@ -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',