Skip to content

Commit

Permalink
chore: update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
Sec-ant committed Jun 10, 2024
1 parent e5a9cd3 commit 6b67027
Showing 1 changed file with 57 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,63 @@ invalid.css:4:13 lint/nursery/noUnmatchableAnbSelector ━━━━━━━━
i For more details, see the official spec for An+B selectors.
```

```
invalid.css:5:13 lint/nursery/noUnmatchableAnbSelector ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! This selector will never match any elements.
3 │ a:nth-child(+0n) {}
4 │ a:nth-child(-0n) {}
> 5 │ a:nth-child(0n+0) {}
│ ^^^^
6 │ a:nth-child(0n-0) {}
7 │ a:nth-child(-0n-0) {}
i Avoid using An+B selectors that always evaluate to 0.
i For more details, see the official spec for An+B selectors.
```

```
invalid.css:6:13 lint/nursery/noUnmatchableAnbSelector ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! This selector will never match any elements.
4 │ a:nth-child(-0n) {}
5 │ a:nth-child(0n+0) {}
> 6 │ a:nth-child(0n-0) {}
│ ^^^^
7 │ a:nth-child(-0n-0) {}
8 │ a:nth-child(0 of a) {}
i Avoid using An+B selectors that always evaluate to 0.
i For more details, see the official spec for An+B selectors.
```

```
invalid.css:7:13 lint/nursery/noUnmatchableAnbSelector ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! This selector will never match any elements.
5 │ a:nth-child(0n+0) {}
6 │ a:nth-child(0n-0) {}
> 7 │ a:nth-child(-0n-0) {}
│ ^^^^^
8 │ a:nth-child(0 of a) {}
9 │ a:nth-child(0), a:nth-child(1) {}
i Avoid using An+B selectors that always evaluate to 0.
i For more details, see the official spec for An+B selectors.
```

```
Expand Down

0 comments on commit 6b67027

Please sign in to comment.