Duplicate keys are the most deceptive error in a .env file because they are not an error at all to most parsers. A file can quietly contain DATABASE_URL=staging at line 4 and DATABASE_URL=production at line 61; whichever rule the parser uses silently ignores one of them, and your deploy connects to a database you thought you replaced.
The Duplicate Key Detector makes every repetition explicit. Each duplicated key is listed with every line number where it appears, the value each line supplies, and the surviving value under the parser model you choose — last-wins by default, first-wins on request, or with key casing normalized if you prefer.
A clean report with zero duplicates is proof the file is unambiguous. The scan is instant, deterministic and runs entirely in the browser — secrets never leave the page.