Wondering if something is missing here. The following works fine:
use Project.Base, [
no_header?: true,
no_footer?: true
]
But this does not:
use Project.Base,
no_header?: true,
no_footer?: true
The module defining the macro looks like:
defmodule Project.Base do
defmacro __using__(opts \\ []) do
# ...
end
end