Skip to content

Commit fcb04a4

Browse files
Bump sqlfluff from 1.4.2 to 1.4.4 in /src (#3309)
* Bump sqlfluff from 1.4.2 to 1.4.4 in /src Bumps [sqlfluff](https://github.com/sqlfluff/sqlfluff) from 1.4.2 to 1.4.4. - [Release notes](https://github.com/sqlfluff/sqlfluff/releases) - [Changelog](https://github.com/sqlfluff/sqlfluff/blob/main/CHANGELOG.md) - [Commits](sqlfluff/sqlfluff@1.4.2...1.4.4) --- updated-dependencies: - dependency-name: sqlfluff dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Update sqlfluff config for new version 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 186448e commit fcb04a4

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,9 +11,10 @@ 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,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
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
17+
# L015 - Sometimes clearer to include brackets for complex COUNT(DISTINCT) cases
1718
# L016 - We allow longer lines as some of our queries are complex. Maybe should limit in future?
1819
# L020 - Asks for unique table aliases meaning it complains if selecting from two 2021_07_01 tables as implicit alias is table name (not fully qualified) so same.
1920
# L022 - CTEs may be chained and do not require a blank line separator, only the last one.

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.2
7+
sqlfluff==1.4.4

0 commit comments

Comments
 (0)