We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to disable the max-public-methods rule for a particular file. I am using this comment:
max-public-methods
# gdlint: disable=max-public-methods
Using this style of comment seems to disable other checks on this file just fine, but max-public-methods refuses to be disabled by this.
I have tried setting it above all public methods and for the file as a whole.
If I dump the default config and add max-public-methods to the array of disabled things, that works fine. But the comment seems to do nothing.
I believe I am specifying it correctly? I am using V3.5.0
The text was updated successfully, but these errors were encountered:
Fix max-public-methods linter check disabling, fixes #222
5635b40
61ca00e
This problem is also present for 4.1
Sorry, something went wrong.
This is fixed but has not been released yet even tho it's in master already.
master
Ah, thank you :)
566ded3
No branches or pull requests
I am trying to disable the
max-public-methods
rule for a particular file. I am using this comment:Using this style of comment seems to disable other checks on this file just fine, but
max-public-methods
refuses to be disabled by this.I have tried setting it above all public methods and for the file as a whole.
If I dump the default config and add
max-public-methods
to the array of disabled things, that works fine. But the comment seems to do nothing.I believe I am specifying it correctly? I am using V3.5.0
The text was updated successfully, but these errors were encountered: