Replies: 2 comments 1 reply
-
Just putting this out here in case you wanted to change it to LF. Either way it doesn't affect me, its just the conflict which is causing weird behaviour. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I use windows but to have mouse in terminal I usually run this lib using WSL. So it should run properlly in both os (and others). |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There appears to be a conflict of settings between CRLF and LF that is causing some issues with my IDE.
The
.vscode
folder specifies VSC to use CRLF line endings (windows-style) through thesettings.json
file:https://github.com/Elius94/console-gui-tools/blob/6e68febe7cfa364b236d48f7ec110e1fe41fd2d1/.vscode/settings.json
The ESLint settings also dictate that CRLF should be used
console-gui-tools/.eslintrc.cjs
Line 28 in 6e68feb
However the
.gitattributes
file specify that LF endings (UNIX-style) should be usedhttps://github.com/Elius94/console-gui-tools/blob/6e68febe7cfa364b236d48f7ec110e1fe41fd2d1/.gitattributes
This creates weird behaviour in my IDE and is a conflict.
Assuming you want CRLF endings you can change the
.gitattributes
file to this to force CRLF:Beta Was this translation helpful? Give feedback.
All reactions