-
Notifications
You must be signed in to change notification settings - Fork 0
/
lint_config.lua
50 lines (50 loc) · 960 Bytes
/
lint_config.lua
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
return {
whitelist_globals = {
["."] = {
'on_changed',
'on_deleted',
'on_created',
'on_moved',
'watch',
'watchnr',
'watch_file',
'notifier',
'log_level',
'first_match_only',
'take_while',
'drop_while',
'one_fs_handler_at_a_time'
},
["Spookfile"] = {
'on_read',
'notify',
'getcwd',
'reload_spook'
},
["lib/config.moon"] = {
'log_level',
'notifier'
},
["lib"] = {
'properties',
'static',
'instance',
'accessors',
'new',
'super',
'missing_property',
'parent',
'meta'
},
["spec"] = {
'it', 'describe', 'before_each', 'before', 'after', 'after_each',
'raise', 'spy', 'context', 'create_file', 'moon', 'run_loop'
},
["spec/spec_helper.moon"] = {
'uv'
},
["spec/globals_spec.moon"] = {
'getcwd', 'chdir'
},
}
}