mason-nvim-lint icon indicating copy to clipboard operation
mason-nvim-lint copied to clipboard

Extension to mason.nvim that makes it easier to use nvim-lint with mason.nvim

Results 12 mason-nvim-lint issues
Sort by recently updated
recently updated
newest added

Thank you for this very useful plugin! This is a very small change which I believe fixes the `ansible-lint` mapping.

As title says, I get the notification Linters [golangci-lint, snyk, htmlhint] are absent in the mason's registry. However they do appear to be in mason's registry. Here is my relevant...

 Warn 02:16:38 notify.warn Linters [write_good] are absent in the mason's registry. Please, install them manually and remove from configuration. but I've install the write-good with Mason. the message was...

PR adds duplication checks: - Checks if a linter is already being installed. - Checks if a linter has been already inserted into `unknown_linters`. - Adds missing linters

In my `nvim-lint` setup I have a linter for fish set up: ``` lint.linters_by_ft = { fish = { 'fish' }, } ``` Now fish doesn't need a separate linter...

I'm receiving an error on startup: ``` Error executing vim.schedule lua callback: ...vim/lazy/mason-nvim-lint/lua/mason-nvim-lint/install.lua:46: attempt to index a nil value stack traceback: ...vim/lazy/mason-nvim-lint/lua/mason-nvim-lint/install.lua:46: in function 'try_install' ...mason-nvim-lint/lua/mason-nvim-lint/ensure_installed.lua:6: in function '' vim/_editor.lua:...

I am using `psalm` as a linter (as the language server is cooked for my project) but it seems that [mason-nvim-lint](https://github.com/rshkarin/mason-nvim-lint) cannot auto-install it, i.e. getting `Linter [psalm] cannot be...

Partial fix for https://github.com/rshkarin/mason-nvim-lint/issues/14.

Lazy.nvim is the standard, and installing this plugin as written does nothing but throw a warning on startup that none of the linters configured are in mason's registry. Odds are...