spacebarchat / server

Spacebar server - A reimplementation of the Discord.com backend, built with Typescript and love
https://spacebar.chat
GNU Affero General Public License v3.0
1.48k stars 251 forks source link

Change EOL to auto in prettier config #1237

Closed dank074 closed 3 days ago

dank074 commented 3 days ago

Finally figured out why prettier was going crazy when we ran it on Windows. Seems they changed the default eol config in v2.0

End of Line First available in v1.15.0, default value changed from auto to lf in v2.0.0

The repository .gitattributes is configured to use auto eol so it will use CRLF on windows and LF on linux. This PR configures prettier to do the same