fix(typst): indentation for block and branch

This commit is contained in:
Ilya Ilyinykh 2026-02-25 15:44:54 +03:00
parent c6d295e966
commit 8557ba1b5b
8 changed files with 80 additions and 1 deletions

View file

@ -0,0 +1,12 @@
local Runner = require('tests.indent.common').Runner
local run = Runner:new(it, 'tests/indent/typst', {
tabstop = 4,
shiftwidth = 4,
softtabstop = 4,
expandtab = false,
})
describe('indent typst:', function()
run:whole_file('.')
end)