Something went wrong while setting issue due date.
Enhancement request for installing git hook strictness
Please describe how you installed Flake8
See #334 (closed)
Please describe the problem or feature
By default the git commit hook is not strict, which while documented at http://flake8.pycqa.org/en/latest/user/using-hooks.html#preventing-commits will surprise many people.
Currently there is no output from the installation command:
$ flake8 --install-hook git
(no output at all)
I would find it helpful if it did:
$ flake8 --install-hook git
Git hook installed, currently NOT using strict mode.
Enable this with `git config --bool flake8.strict true`
or (depending on the user's global or preexisting setting):
$ flake8 --install-hook git
Git hook installed, currently using strict mode.
Disable this with `git config --bool flake8.strict false`