Skip to content

Commit a430583

Browse files
Bump sqlfluff from 1.4.4 to 1.4.5 in /src (#3312)
* Bump sqlfluff from 1.4.4 to 1.4.5 in /src Bumps [sqlfluff](https://github.com/sqlfluff/sqlfluff) from 1.4.4 to 1.4.5. - [Release notes](https://github.com/sqlfluff/sqlfluff/releases) - [Changelog](https://github.com/sqlfluff/sqlfluff/blob/main/CHANGELOG.md) - [Commits](sqlfluff/sqlfluff@1.4.4...1.4.5) --- updated-dependencies: - dependency-name: sqlfluff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Turn off L071 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Barry Pollard <barrypollard@google.com>
1 parent d872a26 commit a430583

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

sql/.sqlfluff

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ templater = jinja
1111
# Comma separated list of rules to check, default to all
1212
rules = all
1313
# Comma separated list of rules to exclude, or None
14-
exclude_rules = L011,L014,L015,L016,L020,L022,L026,L027,L028,L029,L030,L031,L032,L034,L035,L036,L037,L042,L043,L051,L060
14+
exclude_rules = L011,L014,L015,L016,L020,L022,L026,L027,L028,L029,L030,L031,L032,L034,L035,L036,L037,L042,L043,L051,L060,L071
1515
# L011 - We don't always alias tables with AS ("FROM table1 AS tb1" instead of "FROM table1 tb1"). Do for columns but not for tables.
1616
# L014 - Unquoted identifiers (e.g. column names) will be mixed case so don't enforce case
1717
# L015 - Sometimes clearer to include brackets for complex COUNT(DISTINCT) cases
@@ -33,6 +33,7 @@ exclude_rules = L011,L014,L015,L016,L020,L022,L026,L027,L028,L029,L030,L031,L032
3333
# L043 - Use coalesce instead of case if you can. But it's clearer!?
3434
# L051 - INNER JOIN must be fully qualified. Probably should use this but not our style.
3535
# L060 - Use COALESCE instead of IFNULL or NVL. We think ISNULL is clearer.
36+
# L071 - Turn off until https://github.com/sqlfluff/sqlfluff/issues/4188 is addressed
3637
# The depth to recursively parse to (0 for unlimited)
3738
recurse = 0
3839
# Below controls SQLFluff output, see max_line_length for SQL output

src/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ gunicorn==20.1.0
44
pytest==7.2.0
55
pytest-watch==4.2.0
66
pytest-cov==4.0.0
7-
sqlfluff==1.4.4
7+
sqlfluff==1.4.5

0 commit comments

Comments
 (0)