eslint
HTML file error after introducing prettier
: parsing error: unexpected token (prettier/prettier)
Cause of problem
The parser
of prettier
is not configured correctly. (I don’t know why it needs to be configured separately. It should have default configuration for all corresponding file types)
Solution
Modify .prettierrc.json
, add overides
, and configure the parser of HTML. Configurable item: Reference
{
"printWidth": 120,
"singleQuote": true,
"bracketSpacing": true,
"jsxBracketSameLine": true,
"htmlWhitespaceSensitivity": "ignore",
"overrides": [
{
"files": "*.html",
"options": {
"parser": "html"
}
}
]
}