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