summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lsp/ruff.lua
blob: 0d174b3adca4d4206890812937bb5b908608608d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
return {
	cmd = { 'ruff', 'server' },
	filetypes = { 'python' },
	root_marker = {
		'pyproject.toml',
		'ruff.toml',
		'.ruff.toml'
	},
	single_file_support = true,
}