Rules returns the list of rules configured for this linter. The returned slice should not be modified.
()
| 94 | // Rules returns the list of rules configured for this linter. |
| 95 | // The returned slice should not be modified. |
| 96 | func (l *Linter) Rules() []Rule { |
| 97 | return l.rules |
| 98 | } |
| 99 | |
| 100 | // LintFile lints a single SQL file. |
| 101 | // |
no outgoing calls