Skip to content

Commit 64eb52f

Browse files
committed
feat: add luacheck (WIP)
1 parent e849030 commit 64eb52f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.luacheckrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
-- Use lua52 so we will no receive errors regarding to goto statements
2+
std = 'lua52'
3+
4+
-- Rerun tests only if their modification time changed
5+
cache = true
6+
7+
ignore = {
8+
'631', -- max_line_length
9+
}
10+
11+
read_globals = {
12+
'vim',
13+
}
14+
15+
-- vim: ft=lua

0 commit comments

Comments
 (0)