Skip to content

Commit 9c2decb

Browse files
build: set rust version to 1.91.0 & update dependencies (#1085)
* rust 1.91.0 and clippy fixes * update dependencies * update sqlfluff * format
1 parent dc9f305 commit 9c2decb

File tree

37 files changed

+529
-619
lines changed

37 files changed

+529
-619
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- name: Clippy
7878
run: cargo clippy --all-targets --locked -- -D warnings
7979
- name: SQLFluff
80-
run: pipx run sqlfluff==3.4.2 lint
80+
run: pipx run sqlfluff==3.5.0 lint
8181

8282
build:
8383
runs-on: ubuntu-24.04

.sqlfluff

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,15 @@ dialect = postgres
33
templater = jinja
44
sql_file_exts = .sql
55
large_file_skip_byte_limit = 40000
6+
7+
[sqlfluff:rules:references.keywords]
8+
# Words that are not-reserved in <https://www.postgresql.org/docs/current/sql-keywords-appendix.html>
9+
ignore_words =
10+
class,
11+
data,
12+
depth,
13+
family,
14+
hash,
15+
location,
16+
name,
17+
summary

.sqlfluffignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target/

0 commit comments

Comments
 (0)