liquidev / lintplus

An improved linting plugin for the lite text editor.
59 stars 7 forks source link

elixir support #30

Open ravaq opened 1 year ago

ravaq commented 1 year ago

hi! please add linter for elixir. thanks a lot.

PerilousBooklet commented 10 months ago

From my understanding of this, credo is dependent on single projects, so to enable support it would be necessary to make a custom module for the project template manager plugin that installs and configures the linter for every project.

PerilousBooklet commented 10 months ago

And then add support to lintplus.

PerilousBooklet commented 9 months ago

Update: I made a PR to lite-xl-lsp to add support for elixir intellisense. To enable elixir diagnostics, you have to use credo. Add this {:credo, "~> 1.7", only: [:dev, :test], runtime: false} to your mix.exs. Then run mix deps.get and mix credo inside your elixir project folder.