zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

.formatter.exs (531B)


      1 # Used by "mix format" and to export configuration.
      2 export_locals_without_parens = [
      3   plug: 1,
      4   plug: 2,
      5   forward: 2,
      6   forward: 3,
      7   forward: 4,
      8   match: 2,
      9   match: 3,
     10   get: 2,
     11   get: 3,
     12   head: 2,
     13   head: 3,
     14   post: 2,
     15   post: 3,
     16   put: 2,
     17   put: 3,
     18   patch: 2,
     19   patch: 3,
     20   delete: 2,
     21   delete: 3,
     22   options: 2,
     23   options: 3
     24 ]
     25 
     26 [
     27   inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
     28   locals_without_parens: export_locals_without_parens,
     29   export: [locals_without_parens: export_locals_without_parens]
     30 ]