.formatter.exs 337 B

12345678910111213
  1. # Used by "mix format" and to export configuration.
  2. export_locals_without_parens = [
  3. run: 1,
  4. run: 2,
  5. activity: 1,
  6. activity: 2
  7. ]
  8. [
  9. inputs: ["{mix,.formatter,.json}.exs", "{config,lib,test}/**/*.{ex,exs}"],
  10. locals_without_parens: export_locals_without_parens,
  11. export: [locals_without_parens: export_locals_without_parens]
  12. ]