initial commit
This commit is contained in:
parent
dc5408f1a2
commit
9889f6c4ee
35 changed files with 1302 additions and 0 deletions
35
lua/pika/plugins/linting.lua
Normal file
35
lua/pika/plugins/linting.lua
Normal file
|
@ -0,0 +1,35 @@
|
|||
return {
|
||||
'mfussenegger/nvim-lint',
|
||||
event = { 'BufReadPre', 'BufNewFile' },
|
||||
config = function()
|
||||
local lint = require 'lint'
|
||||
|
||||
lint.linters_by_ft = {
|
||||
javascript = { 'eslint_d' },
|
||||
typescript = { 'eslint_d' },
|
||||
javascriptreact = { 'eslint_d' },
|
||||
typescriptreact = { 'eslint_d' },
|
||||
python = { 'pylint' },
|
||||
git = { 'gitlint' },
|
||||
json = { 'jsonlint' },
|
||||
markdown = { 'vale' },
|
||||
fish = { 'fish' },
|
||||
php = { 'php' },
|
||||
yaml = { 'yamllint' },
|
||||
css = { 'stylelint' },
|
||||
}
|
||||
|
||||
local lint_augroup = vim.api.nvim_create_augroup('lint', { clear = true })
|
||||
|
||||
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
|
||||
group = lint_augroup,
|
||||
callback = function()
|
||||
lint.try_lint()
|
||||
end,
|
||||
})
|
||||
|
||||
vim.keymap.set('n', '<leader>l', function()
|
||||
lint.try_lint()
|
||||
end, { desc = 'Trigger linting for current file' })
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue