Skip to content

Commit bf56e8f

Browse files
committed
chore(tooling): Make sure Lua formatting covers Lua code lurking in corvers
1 parent f42cf70 commit bf56e8f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ indent_size = 8
1717
[*.md]
1818
trim_trailing_whitespace = false
1919

20-
[{*.lua,*.lua.in,sile.in,*.rockspec,*.rockspec.in,.busted,.luacheckrc,config.ld}]
20+
[{*.lua,*.lua.in,sile.in,*.rockspec,*.rockspec.in,.busted,.luacov,.luacheckrc,build-aux/config.ld}]
2121
indent_style = space
2222
indent_size = 3
2323
max_line_length = 120

.github/workflows/stylua.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
1515
version: latest
16-
args: --check --respect-ignores -g '*.lua' -g '*.lua.in' -g '*.rockspec.in' .busted .luacov .luacheckrc .
16+
args: --check --respect-ignores -g '*.lua' -g '*.lua.in' -g '*.rockspec.in' .busted .luacov .luacheckrc build-aux/config.ld .

Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ luacheck:
319319
$(LUACHECK) -j$(shell nproc) -q .
320320

321321
stylua:
322-
$(STYLUA) --check --respect-ignores -g '*.lua' -g '*.lua.in' -g '*.rockspec.in' .busted .luacov .luacheckrc .
322+
$(STYLUA) --check --respect-ignores -g '*.lua' -g '*.lua.in' -g '*.rockspec.in' .busted .luacov .luacheckrc build-aux/config.ld .
323323

324324
busted: $(SILELUA) $(addprefix .fonts/,$(TESTFONTFILES)) $(BUSTEDSPECS)
325325
set -f; IFS=';'

0 commit comments

Comments
 (0)