-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature] Hide settings, to be null-ls friendly #166
Comments
Hi @aemonge , could you explain what you meant by "header extra info"? Maybe an example would help. Thanks! |
Sure :) Given a file like:
The current implemention outputs:
And I expect a even more quiet version:
So,
|
So the messages come from these two lines: pydoclint/pydoclint/parse_config.py Line 39 in 8170436
and pydoclint/pydoclint/parse_config.py Line 74 in 8170436
I need to further learn how |
I'll give a shot next week, I'm familiar with click. So for sure I'll archive it, just need some spare time 😉 |
I've done the happy path work -> #178 The test are passing, checked using I didn't create a new test, since it needs to check for STDOUT and that a bit difficult to handle, if you need it I'll take my time and do it for you <3 Finally, I couldn't create a smoke test, since I don't know how to run the project locally (I'm more of a poetry dev, rather than a tox one). I've read the notes_for_developers.md but couldn't find a command to run this on ltye playground.py, if you can tell me how it would be lovely. |
To be able to integrate this on null-ls ( now none-ls ) as a editor diagnostics, we need to remove the header extra info.
I've "by-passed" it by wrapping it in:
But would be great to only show header (config info) if asked
--info
The text was updated successfully, but these errors were encountered: