From dc8211550623c4846f15b80eff64086dd9886687 Mon Sep 17 00:00:00 2001 From: Yevhenii Moruhyi Date: Sat, 20 May 2023 14:36:30 -0400 Subject: [PATCH] add linter and formatter with it's caveats --- lua/config/lazy.lua | 4 +++- lua/plugins/eslint.lua | 41 +++++++++++++++++++++++++++++++++++++++++ lua/plugins/svelte.lua | 17 +++++++++++++++++ 3 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 lua/plugins/eslint.lua create mode 100644 lua/plugins/svelte.lua diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 6a871e29..17470fe6 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -13,7 +13,9 @@ require("lazy").setup({ { import = "lazyvim.plugins.extras.lang.typescript" }, { import = "lazyvim.plugins.extras.lang.json" }, { import = "lazyvim.plugins.extras.util.project" }, - -- { import = "lazyvim.plugins.extras.ui.mini-animate" }, + { import = "lazyvim.plugins.extras.lang.tailwind" }, + -- { import = "lazyvim.plugins.extras.formatting.prettier" }, + -- { import = "lazyvim.plugins.extras.linting.eslint" }, -- import/override with your plugins { import = "plugins" }, }, diff --git a/lua/plugins/eslint.lua b/lua/plugins/eslint.lua new file mode 100644 index 00000000..83587bbb --- /dev/null +++ b/lua/plugins/eslint.lua @@ -0,0 +1,41 @@ +return { + { + "neovim/nvim-lspconfig", + -- other settings removed for brevity + opts = { + ---@type lspconfig.options + servers = { + eslint = { + settings = { + -- helps eslint find the eslintrc when it's placed in a subfolder instead of the cwd root + workingDirectory = { mode = "auto" }, + }, + }, + }, + setup = { + eslint = function() + require("lazyvim.util").on_attach(function(client) + if client.name == "eslint" then + client.server_capabilities.documentFormattingProvider = true + elseif client.name == "tsserver" then + client.server_capabilities.documentFormattingProvider = false + end + end) + end, + -- eslint = function() + -- vim.api.nvim_create_autocmd("BufWritePre", { + -- callback = function(event) + -- local client = vim.lsp.get_active_clients({ bufnr = event.buf, name = "eslint" })[1] + -- if client then + -- local diag = vim.diagnostic.get(event.buf, { namespace = vim.lsp.diagnostic.get_namespace(client.id) }) + -- if #diag > 0 then + -- vim.cmd("EslintFixAll") + -- end + -- end + -- end, + -- }) + -- end, + }, + }, + }, +} diff --git a/lua/plugins/svelte.lua b/lua/plugins/svelte.lua new file mode 100644 index 00000000..23c1cdda --- /dev/null +++ b/lua/plugins/svelte.lua @@ -0,0 +1,17 @@ +return { + { + "williamboman/mason.nvim", + opts = function(_, opts) + table.insert(opts.ensure_installed, "svelte-language-server") + end, + }, + { + "neovim/nvim-lspconfig", + opts = { + servers = { + svelte = {}, + }, + }, + }, + "evanleck/vim-svelte", +}