set endOfLine to auto to support the codebase also on windows machines

This commit is contained in:
Inczefi Robert
2024-09-04 14:55:11 +03:00
committed by GitHub
parent 87a395683d
commit a530fce78c
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"
}