added format support for jsx tsx

This commit is contained in:
Oluwatobi 2023-10-17 15:43:50 +01:00
parent d7575d7a55
commit 2100726468
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,8 @@ require('conform').setup {
python = { 'isort', 'black' }, python = { 'isort', 'black' },
-- Use a sub-list to run only the first available formatter -- Use a sub-list to run only the first available formatter
javascript = { { 'prettierd', 'prettier' } }, javascript = { { 'prettierd', 'prettier' } },
javascriptreact = { { 'prettier' } },
typescriptreact = { { 'prettier' } },
}, },
} }