CSSLint / csslint

Automated linting of Cascading Stylesheets
http://csslint.net
Other
4.76k stars 484 forks source link

CSSLint raising error for justify-content #757

Open KVGarg opened 4 years ago

KVGarg commented 4 years ago

I'm using property space-evenly with justify-content, and running CSSLint over my file is raising the follwoing error:

resources/css/style.css
[  35] ··justify-content:·space-evenly;
**** CSSLintBear [Section: css | Severity: NORMAL] ****
!    ! Expected (flex-start | flex-end | center | space-between | space-around) but found 'space-evenly'. (known-properties)

Also, same issue for word-break

resources/css/style.css
[ 177] ··word-break:·break-word;
**** CSSLintBear [Section: css | Severity: NORMAL] ****
!    ! Expected (normal | keep-all | break-all) but found 'break-word'. (known-properties)

This shouldn't happen!

KVGarg commented 4 years ago

@XhmikosR Can we get this fix possible, in next release?