Skip to content

Commit 5326128

Browse files
committed
init sqlfluff config with mostly core rules
1 parent 94f3d70 commit 5326128

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.sqlfluff

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[sqlfluff:core]
2+
rules = core,L019
3+
large_file_skip_byte_limit = 40000
4+
5+
[sqlfluff:layout:type:comma]
6+
line_position = leading
7+
8+
[sqlfluff:indentation]
9+
indented_joins = false
10+
indented_using_on = true
11+
template_blocks_indent = false
12+
13+
[sqlfluff:rules:L010]
14+
# Keywords should be upper case
15+
capitalisation_policy = upper
16+
17+
[sqlfluff:rules:L030]
18+
# Functions should be upper case
19+
extended_capitalisation_policy = upper

0 commit comments

Comments
 (0)