nette/code-checker

Code checker does not allow tabs after `//`

JanTvrdik opened this issue · 3 comments

The following code is considered invalid because of tabulators after //. Feature or bug?

//          '5.3 Other illegal code positions' => array(
//              '5.3.1  U+FFFE = ef bf be' => array(
//                  "\xEF\xBF\xBE",
//                  "",
//              ),
//              '5.3.2  U+FFFF = ef bf bf' => array(
//                  "\xEF\xBF\xBF",
//                  "",
//              ),
//          ),
dg commented

It can be considered as valid.

dg commented

fixed 094c430

Thank you!