Yubico / yubikit-android

Yubico Mobile Android SDK - YubiKit
Apache License 2.0
102 stars 38 forks source link

Use unix line endings in SDK #59

Closed AdamVe closed 2 years ago

AdamVe commented 2 years ago

Jira: https://yubico.atlassian.net/browse/ANDSDK-107

Converts files' EOLs to \n

Converted automatically with

find . -type f -exec dos2unix {} \;

*.bat files were excluded and keep Windows line endings.

jpreese commented 2 years ago

FWIW the YED team experienced some CRLF / LF differences when we began onboarding Windows developers to contribute to our repository. To keep this consistent in the future (and fix current problems) you could add a .gitattributes file.

AdamVe commented 2 years ago

FWIW the YED team experienced some CRLF / LF differences when we began onboarding Windows developers to contribute to our repository. To keep this consistent in the future (and fix current problems) you could add a .gitattributes file.

@jpreese great idea, I will add it. Thanks!