Eddie Ash
Eddie Ash
Example: ```perl sub opt_spec { [ enable!,'enable bit], } ``` help will only contain ``` --enable enable bit``` I believe it should be ``` --(no)enable enable bit ```
I would like to be able to set the timezone that Watson uses. Use case: I live in the eastern time zone, but the computer that I am using and...
Add ability to support stdin as in put. When doing yamale.make_data(sys.stdin) I get ``` File "/home/scratch.eash/client_tool/client_tool.git/.venv/lib/python3.7/site-packages/yamale/yamale.py", line 29, in make_data raw_data = readers.parse_yaml(path, parser, content=content) File "/home/scratch.eash/client_tool/client_tool.git/.venv/lib/python3.7/site-packages/yamale/readers/yaml_reader.py", line 34, in...
Looks like flake8 has added the cmd line option of --darglint-ignore-regex. When putting that in the tox.ini file such as [darglint] darglint-ignore-regex = ^_(.*) darlint isn't picking up the regex....
When a docstring is formatted using markdown, an extra space at the end means that the next line is not to be wrapped. (pydoc3 uses markdown). Unfortunately, black removes the...
Using the codeadd command how do I let the server now that I have deleted a some characters or lines?
Please support passing the --only-binary to pip. We have a number of packages that we would only want to use binary package with. Please add the ability to support the...
### Issues - [X] I have checked [existing issues](https://github.com/jose-elias-alvarez/null-ls.nvim/issues) and there are no existing ones with the same request. ### Feature description Mypy can sometimes takes a long time to...
I want to be able to disable typer/Click's exception handler, and handle the exceptions myself. I see that in click you can do this by setting standalone_mode = False in...