Skip to content

Commit

Permalink
Update README.md (#247)
Browse files Browse the repository at this point in the history
Removed duplicate align-where-clause-to-the-first statement in README.md
  • Loading branch information
hegner123 authored Dec 5, 2024
1 parent c3f2800 commit 61f09a9
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions packages/sqlint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,27 +271,6 @@ foo.c = 'c' AND
foo.d = 'd'
```

##### align-where-clause-to-the-first

Where clauses must align to the first clause.

Good
```sql
SELECT foo.a
FROM foo
WHERE foo.a = 'a' AND foo.b = 'b' AND
foo.c = 'c' AND
foo.d = 'd'
```

Bad
```sql
SELECT foo.a
FROM foo
WHERE foo.a = 'a' AND foo.b = 'b' AND
foo.c = 'c' AND
foo.d = 'd'
```
##### require-as-to-rename-column

As is always required to rename a column name.
Expand Down

0 comments on commit 61f09a9

Please sign in to comment.