GPService
GPService

Reputation: 329

Why got a error "Irregular whitespace not allowed" and How to solve?

I have <p> tag two tag like this code below, and then I run after that I got "error Irregular whitespace not allowed no-irregular-whitespace".

How can I can I fix?

<div>
<p>Ankjjdhd asas a sds qwe vsdf fsf ewth lioy nfhfgh</p>
<p>sdfsdf ytjyj rtyrty ddgf gsdfgsf ​​in asdsadbfd</p>
</div>

Upvotes: 0

Views: 4156

Answers (1)

ma_jafari
ma_jafari

Reputation: 1059

It's a Eslint error which can be fixed by adding "extends": "eslint:recommended" line in you'r Eslint plugin config file.

Here is a link to the error page from Eslint official web page.

Upvotes: 1

Related Questions