-- -- Author : Dennis Eriksen -- File : yaml_ansible.lua -- Created : 2024-02-15 -- -- Just return if ansible-lint isn't available. if vim.fn.executable("ansible-lint") ~= 1 then return {} end -- If NOT OpenBSD return { -- linting { -- https://github.com/mfussenegger/nvim-lint "mfussenegger/nvim-lint", opts = { linters_by_ft = { ["yaml.ansible"] = { "ansible_lint" }, }, }, }, }