Merge pull request #2030 from rinczefi-user/rinczefi-patch

set endOfLine to auto to support the codebase also on windows machines
This commit is contained in:
Amruth Pillai 2024-09-04 16:53:52 +02:00 committed by GitHub
commit 1bed63a4af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 1 deletions

View File

@ -41,6 +41,14 @@
}
]
}
],
// prettier
"prettier/prettier": [
"warn",
{
"endOfLine": "auto"
}
]
}
},

View File

@ -1,3 +1,4 @@
{
"printWidth": 100
"printWidth": 100,
"endOfLine": "auto"
}