Skip to content

Commit 61f09a9

Browse files
authored
Update README.md (#247)
Removed duplicate align-where-clause-to-the-first statement in README.md
1 parent c3f2800 commit 61f09a9

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

packages/sqlint/README.md

-21
Original file line numberDiff line numberDiff line change
@@ -271,27 +271,6 @@ foo.c = 'c' AND
271271
foo.d = 'd'
272272
```
273273

274-
##### align-where-clause-to-the-first
275-
276-
Where clauses must align to the first clause.
277-
278-
Good
279-
```sql
280-
SELECT foo.a
281-
FROM foo
282-
WHERE foo.a = 'a' AND foo.b = 'b' AND
283-
foo.c = 'c' AND
284-
foo.d = 'd'
285-
```
286-
287-
Bad
288-
```sql
289-
SELECT foo.a
290-
FROM foo
291-
WHERE foo.a = 'a' AND foo.b = 'b' AND
292-
foo.c = 'c' AND
293-
foo.d = 'd'
294-
```
295274
##### require-as-to-rename-column
296275

297276
As is always required to rename a column name.

0 commit comments

Comments
 (0)