I recently updated linter-julia for Atom: https://github.com/AtomLinter/linter-julia
It uses Lint.jl as the backend. However, we want to use StaticLint.jl instead as Lint.jl was made for older versions of the Julia. PR, issue
inter-julia calls Lint.jl API through a call like this
lintserver(named_pipe,"standard-linter-v2");
And sending data (file path and its text mainly) to Lint.jl as JSON that happens here:
How is StaticLint.jl different than Linit.jl?