forked from mrmicahcooper/ecto_query_string
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projections.json
50 lines (45 loc) · 906 Bytes
/
.projections.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"lib":{ "type": "lib" },
"lib/*.ex":{
"type": "lib",
"alternate": "test/{}_test.exs",
"template":[
"defmodule {camelcase|dot} do",
"",
"end",
]
},
"test/*.exs":{
"alternate": "lib/{}.ex",
"template":[
"defmodule {camelcase|dot} do",
" use ExUnit.Case",
"",
"end",
]
},
"test":{ "type":"test" },
"test/*_test.exs":{
"type": "test",
"alternate": "lib/{}.ex",
"template":[
"defmodule {camelcase|dot|capitalize}Test do",
" use ExUnit.Case#, async: true",
"",
"end",
]
},
"test/test_helper.exs":{
"type":"helper",
},
"config/config.exs":{ "type": "config", },
"config/*.exs":{
"type": "config",
"template":[
"use Mix.Config",
]
},
"mix.exs":{ "type": "x", },
"*.exs": { "console": "iex -S mix", },
"*.ex": { "console": "iex -S mix", },
}