Testing command: phpcbf --standard=Drupal .
The following line in CSS:
background: #072237;
is converted into:
background: 1072237;
so # character is changed to 1. Is it correct?
Here is the whole context:
.mortgage-calculator h2 {
background: #072237;
color: #fff;
font-weight: normal;
height: 50px;
line-height: 50px;
padding: 0 0 0 30px;
}The same for:
border-top: 5px solid #000;
is changed to:
border-top: 5px solid 1000;
Comments
Comment #2
kenorb commentedComment #3
klausiThis is a problem upstream in PHPCS, postponed on https://github.com/squizlabs/PHP_CodeSniffer/pull/838
Comment #5
klausiThis has now been merged upstream. Please update to a dev version of PHPCS since the change has not been released yet.