Skip to content

Commit 445c4af

Browse files
github-actions[bot]neilime
authored andcommitted
[create-pull-request] automated change
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Emilien Escalle <[email protected]>
1 parent 23d281a commit 445c4af

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@ It supports [W3C](https://www.w3.org/Style/CSS/) and [MDN](https://developer.moz
2424
2525
===========================================================
2626
27-
# Lint file "/path/to/css/file.css"...
28-
=> File "/path/to/css/file.css" is not valid :
29-
30-
- Unknown CSS property "bordr-top-style" (line: 8, char: 20)
31-
- Unexpected char ":" (line: 15, char: 5)
27+
# Lint CSS file "/path/to/css/file.css"...
28+
- [invalid_property_declaration]: property - Unknown property "bordr-top-style" (line 3, column 5 to line 3, column 27)
29+
- [unclosed_token]: block - Unclosed "block" detected (line 1, column 23 to line 6, column 2)
30+
=> Failure: CSS file "/path/to/css/file.css" is invalid CSS.
3231
```
3332

3433
# Helping Project

src/CssLint/Referential/Standard/PropertiesReferential.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,23 @@ class PropertiesReferential extends AbstractReferential
163163
'container-type' => true,
164164
'content' => true,
165165
'content-visibility' => true,
166+
'corner-block-end-shape' => true,
167+
'corner-block-start-shape' => true,
168+
'corner-bottom-left-shape' => true,
169+
'corner-bottom-right-shape' => true,
170+
'corner-bottom-shape' => true,
171+
'corner-end-end-shape' => true,
172+
'corner-end-start-shape' => true,
173+
'corner-inline-end-shape' => true,
174+
'corner-inline-start-shape' => true,
175+
'corner-left-shape' => true,
176+
'corner-right-shape' => true,
177+
'corner-shape' => true,
178+
'corner-start-end-shape' => true,
179+
'corner-start-start-shape' => true,
180+
'corner-top-left-shape' => true,
181+
'corner-top-right-shape' => true,
182+
'corner-top-shape' => true,
166183
'counter-increment' => true,
167184
'counter-reset' => true,
168185
'counter-set' => true,

0 commit comments

Comments
 (0)