## {{#if passed_all_checks}}✅{{else}}❌{{/if}} Eugene lint report
{{#if name}}
Script name: `{{name}}`
{{/if}}
{{#unless skip_summary}}
This is a human readable SQL lint report generated by [eugene](https://github.com/kaaveland/eugene).
Keep in mind that lint rules can be ignored in the following two ways:
1. By appending comment directives like `-- eugene: ignore E123` to the SQL statement.
2. By passing `--ignore E123` on the command line.
{{/unless}}
{{#each statements}}
### {{#if this.triggered_rules}}❌{{else}}✅{{/if}} Statement number {{this.statement_number}}
```sql
{{this.sql}}
```
{{#if this.triggered_rules}}
#### Triggered rules
{{#each this.triggered_rules}}
##### `{{this.id}}`: [{{this.name}}]({{this.url}})
{{this.help}}.
{{/each}}
{{/if}}
{{/each}}