summaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/ruff.lua
blob: d00352c2f993b007143087a2d3d9e2b2f23c6b5e (plain)
1
2
3
4
5
6
7
8
9
10
11
return {
  cmd = { "ruff", "server" },
  filetypes = { "python" },
  root_markers = {
    "pyproject.toml",
    "ruff.toml",
    ".ruff.toml",
  },
  single_file_support = true,
  settings = {},
}