eslint-plugin-ejs

Parses out ejs declarations found in js files

Usage no npm install needed!

<script type="module">
  import eslintPluginEjs from 'https://cdn.skypack.dev/eslint-plugin-ejs';
</script>

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