Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/clubedaentrega/eslint-plugin-cde-ejs-html

A plugin that allows lint the JS inside EJS tags
https://github.com/clubedaentrega/eslint-plugin-cde-ejs-html

Last synced: 28 days ago
JSON representation

A plugin that allows lint the JS inside EJS tags

Awesome Lists containing this project

README

        

# eslint-plugin-ejs-html

A plugin that allows lint the JS inside EJS tags

## Installation

You'll first need to install [ESLint](http://eslint.org):

```
$ npm i eslint --save-dev
```

Next, install `eslint-plugin-ejs-html`:

```
$ npm install eslint-plugin-ejs-html --save-dev
```

**Note:** If you installed ESLint globally (using the `-g` flag) then you must also install `eslint-plugin-ejs-html` globally.

## Usage

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

```json
{
"plugins": [
"ejs-html"
]
}
```