Daniel Hahler
Daniel Hahler
> how would I make it have a -config and -exclude options that you can set? Does it support config files that it picks up automatically? That's usually the best.
Hmm.. not sure what problem you are trying to solve. See https://github.com/neomake/neomake/issues/1859 for appending args to existing makers. I think I should finish https://github.com/neomake/neomake/pull/2161.
The path gets appended automatically in the end (via `append_file=1` setting). Check also https://github.com/neomake/neomake/pull/2161.
@augusto67ovi When using this PR/branch it would be `let g:neomake_python_pylint_append_args = '--disable=W0107,W0410,W0611,W0613,W0614,C0103,C0301,C0302,R0902,R0914,R0913,R0904,R09034'`.
The hardcoded path you mention comes from here: https://github.com/neomake/neomake/blob/5b1f35e039e98215e47ec7259816e20220f65fd9/autoload/neomake/makers/ft/java.vim#L319-L332.
> I'm also using javacomplete2, which is able to get the classpath fine. What is the correct classpath? Maybe we could pick it up from javacomplete2 if it is defined...
So you configure them explicitly then I assume? (there are no errors when auto-detection does not find makers)
"mypy" is not enabled by default. Is this mostly/only for Python files?
> I don't see any difference between Python and not-Python files. Sure. I'm just interested in understanding your use case. Can you post your Neomake config, please?