We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c0e864 commit 2e22acfCopy full SHA for 2e22acf
.github/workflows/ci.yml
@@ -46,7 +46,7 @@ jobs:
46
47
- name: Lint Lua code
48
run: |
49
- luacheck lua/ --globals vim
+ luacheck lua/ --globals vim --no-color
50
stylua --check lua/
51
52
- name: Test plugin loading
.luacheckrc
@@ -54,6 +54,23 @@ ignore = {
54
"611", -- line contains only whitespace
55
"612", -- inconsistent indentation
56
"613", -- line has trailing whitespace
57
+ "614", -- line has trailing semicolon
58
+ "615", -- line has trailing comma
59
+ "616", -- line has trailing dot
60
+ "617", -- line has trailing operator
61
+ "618", -- line has trailing parenthesis
62
+ "619", -- line has trailing bracket
63
+ "620", -- line has trailing brace
64
+ "621", -- line has trailing comment
65
+ "622", -- line has trailing string
66
+ "623", -- line has trailing number
67
+ "624", -- line has trailing identifier
68
+ "625", -- line has trailing keyword
69
+ "626", -- line has trailing operator
70
+ "627", -- line has trailing parenthesis
71
+ "628", -- line has trailing bracket
72
+ "629", -- line has trailing brace
73
+ "630", -- line has trailing comment
74
}
75
76
exclude_files = {
0 commit comments