igniter/.igniter.exs
Zach Daniel 8937710de9 improvement: make module moving much smarter
improvement: add configurations for not moving certain modules
improvement: make `source_folders` configurable
2024-07-02 23:26:39 -04:00

14 lines
325 B
Elixir

# This is a configuration file for igniter.
# For option documentation, see hexdocs.pm/igniter/Igniter.Project.IgniterConfig.html
# To keep it up to date, use `mix igniter.setup`
[
module_location: :outside_matching_folder,
source_folders: [
"lib",
"test/support"
],
dont_move_files: [
~r"lib/mix"
]
]