{%- macro ruleCategories(params) -%}
{%- if params.recommended == true -%}
Recommended

Using the recommended config from @eslint/js in a configuration file enables this rule

{%- endif -%} {%- if params.fixable -%}
🔧 Fixable

Some problems reported by this rule are automatically fixable by the --fix command line option

{%- endif -%} {%- if params.hasSuggestions == true -%}
💡 hasSuggestions

Some problems reported by this rule are manually fixable by editor suggestions

{%- endif -%}
{%- endmacro -%} {%- macro recommended() -%}
Recommended

if the recommended config from @eslint/js in a configuration file enables the rule.

{%- endmacro -%} {%- macro fixable() -%}
🔧 Fixable

if some problems reported by the rule are automatically fixable by the --fix command line option

{%- endmacro -%} {%- macro hasSuggestions() -%}
💡 hasSuggestions

if some problems reported by the rule are manually fixable by editor suggestions

{%- endmacro -%}