fix: linting, formatting

This commit is contained in:
Abhinav Robinson 2024-06-14 11:51:17 +05:30
parent 0021a83ef3
commit 7c9408ea3c
3 changed files with 11 additions and 1 deletions

View File

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

View File

@ -8,4 +8,5 @@ return {
require 'custom.plugins.cokeline',
require 'custom.plugins.alpha',
require 'custom.plugins.typescript-tools',
require 'custom.plugins.tsc',
}

View File

@ -0,0 +1,6 @@
return {
'dmmulroy/tsc.nvim',
config = function()
require('tsc').setup()
end,
}