• 0

Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent]


The Byte Order Marks (BOM) such as #FEFF or #FFFE are invisible characters in the text editor. The characters are always the very first in a text file. You might see the following error from your static analysis tool Weird number of spaces at line-start. You can solve such errors by the following steps:
 - Open the file in vim text editor and run the following commands
 - :set nobomb
 - :wq