Skip to content

Commit

Permalink
fix(formatting): npm_groovy_lint.lua: fix timeout and no error (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
mosheavni authored Jan 19, 2024
1 parent cf81e76 commit f7f9192
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/null-ls/builtins/formatting/npm_groovy_lint.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ return h.make_builtin({
filetypes = { "groovy", "java", "Jenkinsfile" },
generator_opts = {
command = "npm-groovy-lint",
args = { "--format", "-" },
args = { "--failon", "none", "--format", "-" },
timeout = 5000,
to_stdin = true,
},
factory = h.formatter_factory,
Expand Down

0 comments on commit f7f9192

Please sign in to comment.