You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 1, 2020. It is now read-only.
Somewhat similiar to ## no critic in perl-critic, allow the skipping of tailor checking for a line/block via specialized comments.
As an example:
Chef::Log.warn "some string that is just pas the 79 line length"
There really is no way, nor a need to shorten this line for the sake of meeting tailor style guidelines. Anything you do to it makes it less readable. It would be nice to skip lines like these:
Chef::Log.warn "some string that is just pas the 79 line length" ## no tailor
or:
Chef::Log.warn "some string that is just pas the 79 line length" # violates(max_line_length)
The text was updated successfully, but these errors were encountered:
Somewhat similiar to ## no critic in perl-critic, allow the skipping of tailor checking for a line/block via specialized comments.
As an example:
There really is no way, nor a need to shorten this line for the sake of meeting tailor style guidelines. Anything you do to it makes it less readable. It would be nice to skip lines like these:
or:
The text was updated successfully, but these errors were encountered: