1.0.1 • Published 3 years ago

eslint-plugin-html-erb v1.0.1

Weekly downloads
564
License
ISC
Repository
github
Last release
3 years ago

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-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.

Usage

Add html-erb to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "plugins": [
    "html-erb"
  ]
}