Add fix eslint on save

This commit is contained in:
Jorge Benavente 2024-05-04 14:42:26 +02:00
parent a9ddc1fe8b
commit 9aa032fedd
1 changed files with 4 additions and 1 deletions

View File

@ -678,7 +678,10 @@ require('lazy').setup({
-- --
-- You can use a sub-list to tell conform to run *until* a formatter -- You can use a sub-list to tell conform to run *until* a formatter
-- is found. -- is found.
javascript = { { 'prettierd', 'prettier' } }, javascript = { { 'eslint', 'prettierd', 'prettier' } },
javascriptreact = { { 'eslint', 'prettierd', 'prettier' } },
typescript = { { 'eslint', 'prettierd', 'prettier' } },
typescriptreact = { { 'eslint', 'prettierd', 'prettier' } },
}, },
}, },
}, },