add specific check for linebreak linting

This commit is contained in:
theofficialomega
2025-07-27 16:34:04 +02:00
parent 9d2cf08e2e
commit 4c952a6c13

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.platform === 'win32' ? 'windows' : 'unix'],
quotes: [
'error',