Ignore Rails code in ERB template in order to avoid fatal errors like this one:
Parsing error: Unexpected token %= (Fatal)
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-html-erb
:
$ npm install eslint-plugin-html-erb --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-html-erb
globally.
Add html-erb
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"html-erb"
]
}