-
Notifications
You must be signed in to change notification settings - Fork 130
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
Disable linter for one line #367
Comments
@huda-kh From the documentation, you can disable it like this: <%# erb_lint:disable Naming/VariableNumber %>
<%= f.input :freight_country,
required: true,
wrapper_html: { class: 'form--medium' },
input_html: { class: 'country-input' },
prompt: "Please select",
collection: ISO3166::Country.all.reject { |c| c.alpha2 == 'AU' },
value_method: lambda(&:alpha2), # erblint: disable Naming/VariableNumber
label_method: ->(country) { country.translations["en"] } %>
<%# erb_lint:enable Naming/VariableNumber %> Not sure if that works for you. |
Not sure where you found this in the documentation? There is no mention at all of |
I have this block of code:
and I need to disable
Naming/VariableNumber
for the line before last but appending# erblint: disable Naming/VariableNumber
to it is not doing it. Any ideas?The text was updated successfully, but these errors were encountered: