-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.luacheckrc
52 lines (48 loc) · 1.27 KB
/
.luacheckrc
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
51
--
-- Configuration for luacheck
--
unused_args = false
unused_secondaries = false
stds.osm2pgsql = {
read_globals = {
osm2pgsql = {
fields = {
process_node = {
read_only = false
},
process_way = {
read_only = false
},
process_relation = {
read_only = false
},
process_untagged_node = {
read_only = false
},
process_untagged_way = {
read_only = false
},
process_untagged_relation = {
read_only = false
},
select_relation_members = {
read_only = false
},
process_gen = {
read_only = false
},
after_nodes = {
read_only = false
},
after_ways = {
read_only = false
},
after_relations = {
read_only = false
},
},
other_fields = true,
}
}
}
std = 'min+osm2pgsql+busted'