eslint/no-irregular-whitespace Correctness ​
What it does ​
Disallows the use of irregular whitespaces in the code.
Why is this bad ​
The use of irregular whitespaces can hinder code readability and create inconsistencies, making maintenance and collaboration more challenging.
Example ​
javascript
function invalidExample() {
return 42;
}