I have a problem when run a DBT project. Some of my SQL commands are longer then the limit (80). So I have got the following error info:

I have tried to change the limit in dbt_project.yml and .sqlfluff. But none of the worked.
How to fix this problem and change the length limit?


That's a linter-related issue, so most probably nothing to do with your
dbt_project.yml.In order to correctly set a
max_line_lengthvalue in your.sqlflufffile, you need to nest it under the[sqlfluff]tag. Meaning that your.sqlflufffile should look like this:See this example for SQLFluff's docs here.