Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,10 @@ It supports [W3C](https://www.w3.org/Style/CSS/) and [MDN](https://developer.moz

===========================================================

# Lint file "/path/to/css/file.css"...
=> File "/path/to/css/file.css" is not valid :

- Unknown CSS property "bordr-top-style" (line: 8, char: 20)
- Unexpected char ":" (line: 15, char: 5)
# Lint CSS file "/path/to/css/file.css"...
- [invalid_property_declaration]: property - Unknown property "bordr-top-style" (line 3, column 5 to line 3, column 27)
- [unclosed_token]: block - Unclosed "block" detected (line 1, column 23 to line 6, column 2)
=> Failure: CSS file "/path/to/css/file.css" is invalid CSS.
```

# Helping Project
Expand Down
17 changes: 17 additions & 0 deletions src/CssLint/Referential/Standard/PropertiesReferential.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,23 @@ class PropertiesReferential extends AbstractReferential
'container-type' => true,
'content' => true,
'content-visibility' => true,
'corner-block-end-shape' => true,
'corner-block-start-shape' => true,
'corner-bottom-left-shape' => true,
'corner-bottom-right-shape' => true,
'corner-bottom-shape' => true,
'corner-end-end-shape' => true,
'corner-end-start-shape' => true,
'corner-inline-end-shape' => true,
'corner-inline-start-shape' => true,
'corner-left-shape' => true,
'corner-right-shape' => true,
'corner-shape' => true,
'corner-start-end-shape' => true,
'corner-start-start-shape' => true,
'corner-top-left-shape' => true,
'corner-top-right-shape' => true,
'corner-top-shape' => true,
'counter-increment' => true,
'counter-reset' => true,
'counter-set' => true,
Expand Down