Force casing of mix/elixir project module

By default Elixir will create the new project module passed to the mix generate with the CamelCase format but if you want your project to have specific module casing (like uppercase) you can pass the —module flag to mix.new. That looks like this:

mix new dev_decks --module DEVDECKS

The resulting project module: name-overrides