0

I have this in my .sqlfluff, as per SQLFluff's documentation:

[sqlfluff]
exclude_rules = L003

When I run sqlfluff lint in the same directory where the configuration file is located, it still checks rule L003. What am I missing to exclude it?

Dominik
  • 244
  • 1
  • 3
  • 13

1 Answers1

0

The rules to be excluded are comma-separated even when there is only one so you need to write:

[sqlfluff]
exclude_rules = L003,