Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/user-guide/rules/attr-lowercase.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ Level: `error`

1. true: enable rule
2. false: disable rule
3. ['viewBox', 'test']: Ignore some attr name
3. ['viewBox', 'Test']: enable rule except for the given attribute names

The following pattern are **not** considered violations:
The following pattern is **not** considered a violation:

<!-- prettier-ignore -->
```html
<img src="test.png" alt="test" />
```

The following pattern is considered violation:
The following pattern is considered a violation:

<!-- prettier-ignore -->
```html
<img src="test.png" alt="test" />
<img SRC="test.png" ALT="test" />
```