fix(typst): indentation for block and branch

This commit is contained in:
Ilya Ilyinykh 2026-02-25 20:35:46 +03:00 committed by GitHub
parent 67d0fd3e0a
commit 0f5b204603
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 81 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)