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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
std = 'luajit'
new_read_globals = {
'help',
'quit',
'hostname',
'package_version',
'moduledir',
'user',
'verbose',
'resolve',
'tojson',
'todname',
'map',
'net',
'cache',
'modules',
'trust_anchors',
'worker',
'event',
'_hint_root_file',
-- Sandbox declarations
'kB',
'MB',
'GB',
'sec',
'second',
'minute',
'min',
'hour',
'day',
'panic',
'warn',
'log',
'mode',
'trust_anchors',
'reorder_RR',
'option',
'env',
'kres',
'trustanchor',
'libknot_SONAME',
'libzscanner_SONAME',
'table_print',
'__engine',
'_ENV',
'_SANDBOX',
}
new_globals = {
-- Modules are allowed to be set and accessed from global namespace
'policy',
'view',
'stats',
'http',
'trust_anchors',
'bogus_log',
}
-- Luacheck < 0.18 doesn't support new_read_globals
for _, v in ipairs(new_read_globals) do
table.insert(new_globals, v)
end
-- Ignore test files
exclude_files = {
'modules/policy/lua-aho-corasick', -- Vendored
'tests/config/tapered',
}
-- Ignore some pedantic checks
ignore = {
'4.1/err', -- Shadowing err
'4.1/.', -- Shadowing one letter variables
}
-- Sandbox can set global variables
files['daemon/lua'].ignore = {'111', '121', '122'}
files['daemon/lua/kres-gen.lua'].ignore = {'631'} -- Allow overly long lines
-- Tests and scripts can use global variables
files['scripts'].ignore = {'111', '112', '113'}
files['tests'].ignore = {'111', '112', '113'}
files['modules/**/*.test.lua'].ignore = {'111', '112', '113', '121', '122'}
files['daemon/**/*.test.lua'].ignore = {'111', '112', '113', '121', '122'}
|