Line endings are invisible until they are not. A .env edited once on Windows and once on Linux can end up with a mix of CRLF and LF, and while most dotenv libraries cope, the diff noise and the odd \r clinging to a value become real problems in scripts, containers and CI.
The Line Ending Checker counts each flavour — CRLF, LF and legacy CR — breaks the file down line by line, and tells you in one sentence whether the file is consistent or mixed. It also catches values with a stray carriage return hanging off the end.
Everything is computed locally; the file never leaves the page.