eslint-plugin-ejs

Parses out ejs declarations found in js files

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
eslint-plugin-ejs
0.0.27 years ago7 years agoMinified + gzip package size for eslint-plugin-ejs in KB

Readme

eslint-plugin-ejs
Parses out ejs declarations found in js and jsx files. Primarily designed for Redux CLI for parsing ejs syntax.
For example if you have a file like below, eslint will not be able to parse it normally due to the ejs markers. With this plugin, the linter is able to work normally. Note that whatever is inside the markers will remain.
import React from 'react'

type Props = {

};
export class <%= pascalEntityName %> extends React.Component {
  props: Props;

  render () {
    return (
      <div></div>
    )
  }
}

export default <%= pascalEntityName %>

Installation

You'll first need to install ESLint:
$ npm install eslint --save-dev

Next, install eslint-plugin-ejs:
$ npm install eslint-plugin-ejs --save-dev

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

Usage

Add ejs to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
    "plugins": [
        "ejs"
    ]
}

Tests

$ npm test