This commit is contained in:
Miguel Da Silva 2024-09-28 09:43:42 +02:00
parent 6367b6c38e
commit 70a245c28c
1 changed files with 5 additions and 0 deletions

View File

@ -6,7 +6,12 @@ return {
config = function() config = function()
local lint = require 'lint' local lint = require 'lint'
lint.linters_by_ft = { lint.linters_by_ft = {
<<<<<<< HEAD
markdown = { 'markdownlint' }, markdown = { 'markdownlint' },
=======
['markdown'] = { 'markdownlint' },
['python'] = { 'flake8' },
>>>>>>> 373bf49 (typos)
} }
-- To allow other plugins to add linters to require('lint').linters_by_ft, -- To allow other plugins to add linters to require('lint').linters_by_ft,