-
Notifications
You must be signed in to change notification settings - Fork 15
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
Fix registration of plugin #9
Fix registration of plugin #9
Conversation
According to the flake8 plugin docs, the entry point name should be the error code prefix that will be emitted from the plugin. Otherwise, apparently flake8 will silently discard messages. Fix that by registering under C801.
Until savoirfairelinux/flake8-copyright#9 is merged and there's a new release.
0de79fd
to
3e5e5af
Compare
Does this fix #10? |
Possibly? Not sure what the root cause of #10 is. |
Tested with Without this fix, you must specify I am very interrested in this fix, would it be considered to have a release with it ? (I see last activity in 2019) |
Looks like the plugin requires this change to work at all with flake 5.0, see PyCQA/flake8#325 I'm getting
|
According to the flake8 plugin docs, the entry point name should be the error code prefix that will be emitted from the plugin. Otherwise, apparently flake8 will silently discard messages. Fix that by registering under C801.