Skip to content

Commit 2e22acf

Browse files
committed
fix(ci): ci configuration -v7
1 parent 8c0e864 commit 2e22acf

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
- name: Lint Lua code
4848
run: |
49-
luacheck lua/ --globals vim
49+
luacheck lua/ --globals vim --no-color
5050
stylua --check lua/
5151
5252
- name: Test plugin loading

.luacheckrc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,23 @@ ignore = {
5454
"611", -- line contains only whitespace
5555
"612", -- inconsistent indentation
5656
"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
5774
}
5875

5976
exclude_files = {

0 commit comments

Comments
 (0)