In this PR I reformat cookiecutter template for plugins to pass* pre-commit run.
The current output of the cookiecutter fails pre-commit checks.
Especially isort removes all import from __init__ file because of lack of __all__ entry.
Code from this PR pass almost tall pre-commit checks. The only exception is setup-cfg-fmt because it will remove comments that I think may be important for a new user.
In this PR I reformat cookiecutter template for plugins to pass* pre-commit run.
The current output of the cookiecutter fails pre-commit checks.
Especially
isort
removes all import from__init__
file because of lack of__all__
entry.Code from this PR pass almost tall pre-commit checks. The only exception is
setup-cfg-fmt
because it will remove comments that I think may be important for a new user.