Daniel Hahler
Daniel Hahler
> `+=` Whoops, should be `+` only of course.
I could imagine having something with `neomake#config`, e.g. `neomake#config#append()` which would append to an existing (default) setting, e.g. for your use case: ``` call neomake#config#append('python.pylint.args', ['--extension-pkg-whitelist=numpy']) ``` This could then...
I have some WIP to allow for `:Neomake foo --add-args bar`, but in your case it seems to be related to a default config only. Any feedback on my previous...
I've started working on an "append_args" setting in https://github.com/neomake/neomake/pull/2161 (just rebased it): please provide feedback there.
You could use `g:neomake_open_list = 0` temporary. Redirecting output (`:NeomakeSh echo foo >/dev/null`) might also help, but the list is still cleared/handled. I think there could be a maker flag/setting...
The following makes `:NeomakeSh echo foo >/dev/null` work. However, it will also not clear the list in case all linters are successful (no entries), so that's not really an option:...
Are you still interested in this? Started working on it in https://github.com/neomake/neomake/pull/2263. What is your use case?
@erw7 Can you rebase this to fix conflicts? (I came across a fix for the static library name also just yet (which is included here already): https://github.com/libuv/libuv/pull/2374)
Where is it blocking? Is there a second request instance involved? (otherwise it should just return, shouldn't it?) https://github.com/encode/starlette/blob/7eb43757307d4702ee6a1f2739388242c703e47e/starlette/requests.py#L178-L193
Looks like it: https://github.com/encode/starlette/blob/7eb43757307d4702ee6a1f2739388242c703e47e/starlette/middleware/base.py#L26 and https://github.com/encode/starlette/blob/7eb43757307d4702ee6a1f2739388242c703e47e/starlette/routing.py#L38. Can you write a test for starlette itself? (just for reference: https://github.com/encode/starlette/pull/498)