Skip to content

Commit 9d3f068

Browse files
committed
fix: lint
1 parent 411a1dc commit 9d3f068

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.sqlfluff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[sqlfluff]
22
dialect = postgres
3-
exclude_rules = LT01, CP02
3+
exclude_rules = LT01, LT05, CP02
44

55
[sqlfluff:rules]
66
keywords_capitalisation_policy = upper

leetcode/easy/181. Employees Earning More Than Their Managers.sql

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ Return the result table in any order.
2525
*/
2626

2727
SELECT t1.name AS Employee
28-
FROM Employee t1
29-
JOIN Employee t2
28+
FROM Employee AS t1
29+
JOIN
30+
Employee AS t2
3031
ON t1.managerId = t2.id
3132
WHERE t1.salary > t2.salary

0 commit comments

Comments
 (0)