tranxuanthang / lrcget

Utility for mass-downloading LRC synced lyrics for your offline music library.
MIT License
540 stars 20 forks source link

Improve the linter so that it automatically format and fix all errors in lyrics editor #32

Open Dr-Blank opened 7 months ago

Dr-Blank commented 7 months ago

as on the wikipedia page, it is a valid lrc even if there is no space between timestamps and the lyrics

the rendering of lyrcis by all players, even lrcget does not get affected by it.

image

api accepts those lyrics without raising error. although I am not even sure if it rejects anything, is there a format checking for the publish api?

tranxuanthang commented 5 months ago

The linter only runs on client-side. There is no server-side check at the moment. This is enforced for style consistency, the LRC file is still valid and readable by LRCGET with or without space between the timestamp and the lyrics.

I think similar to most programming language linters, we can implement an auto "fix all" button, it would indeed save a lot of time for users.