-
Notifications
You must be signed in to change notification settings - Fork 208
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
Trailing line comment to disable check #214
Comments
+1 for a simple fix. |
running into this one myself. |
This might be easier to implement than #68 but this will also make lines that are already too long even longer. |
@vStone I agree, so perhaps a complete and abbreviated form is required. I'd still recommend a decorated comment marker e.g. |
+1 |
The python linting tool pep8 let one add a comment at the end of line with "noqa". Ie:
Commented on #247 |
I know it's python-specific (AFAIK), but +1 for pep8's "# noqa" |
Implemented in #266 |
I'm using a specific example here, but could it be possible to disable a check on a single line in a puppet file?
Sometimes we want to embed a variable in a single quoted string in a couple of places in the code usually because it needs to go into a file verbatim, but don't want to disable the check for the whole file.
I'm suggesting something of the form:
Using the
#$
to designate an 'active comment'The text was updated successfully, but these errors were encountered: