UNPKG

eslint-plugin-ejs

Version:

Parses out ejs declarations found in js files

57 lines (40 loc) 1.13 kB
# 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. ```js 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](http://eslint.org): ``` $ 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: ```json { "plugins": [ "ejs" ] } ``` ## Tests ``` $ npm test ```