Big commit biiiig commit

This commit is contained in:
Jimmy Bates 2024-04-21 02:09:04 -07:00
parent 5887fc58e2
commit 0ed010f399
18 changed files with 815 additions and 380 deletions

View file

@ -7,6 +7,15 @@ return {
local lint = require 'lint'
lint.linters_by_ft = {
markdown = { 'markdownlint' },
python = { 'mypy', 'ruff' },
yaml = { 'yamllint' },
cmake = { 'cmakelint' },
cpp = { 'cppcheck' },
c = { 'cppcheck' },
json = { 'jsonlint' },
javascript = { 'eslint' },
css = { 'stylelint' },
html = { 'tidy' },
}
-- To allow other plugins to add linters to require('lint').linters_by_ft,