Key names are the API of a configuration system. DB_PASSWORD, dbPassword, db-password and DB.password may all work on one parser and fail on another, and a codebase mixing them is a codebase where nothing is greppable.
The Naming Convention Checker validates every key in your .env against the community-standard UPPER_SNAKE_CASE — or a rule you choose. It reports each offending key with its line number and exactly why it fails: lowercase letter, hyphen, dot, leading digit, or stray character.
It also flags invalid characters that will break the strictest parsers, and skips commented lines so your documentation stays free of false alarms.