lithammer / nvim-diagnosticls

diagnostic-languageserver configuration for Neovim's language server client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

diagnostic-languageserver configuration for Neovim's language server client.

local lspconfig = require("lspconfig")
local diagnosticls = require("diagnosticls")

lspconfig.diagnosticls.setup({
  filetypes = {
    "haskell",
    unpack(diagnosticls.filetypes),
  },
  init_options = {
    linters = vim.tbl_deep_extend("force", diagnosticls.linters, {
      hlint = {
        command = "hlint",
        -- ...
      },
    }),
    formatters = diagnosticls.formatters,
    filetypes = {
      haskell = "hlint",
      lua = { "luacheck", "selene" },
      markdown = { "markdownlint" },
      python = { "flake8", "mypy" },
      scss = "stylelint",
      sh = "shellcheck",
      vim = "vint",
      yaml = "yamllint",
    },
    formatFiletypes = {
      fish = "fish_indent",
      javascript = "prettier",
      javascriptreact = "prettier",
      json = "prettier",
      lua = { "lua-format", "stylua" },
      python = { "isort", "black", "autoflake" },
      sh = "shfmt",
      sql = "pg_format",
      typescript = "prettier",
      typescriptreact = "prettier",
    },
  },
})

About

diagnostic-languageserver configuration for Neovim's language server client

License:MIT License


Languages

Language:Lua 100.0%