Add supporting of pugjs with react.
It adds supporting of babel-plugin-transform-react-pug.
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-react-pug:
$ npm install eslint-plugin-react-pug --save-dev
Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-react-pug globally.
Add react-pug to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"react-pug"
]
}Then configure the rules you want to use under the rules section.
{
"extends": [
"plugin:react-pug/all"
]
}react-pug/empty-lines: Manage empty lines in Pugreact-pug/eslint: Lint JavaScript code inside Pugreact-pug/indent: Enforce consistent indentationreact-pug/no-broken-template: Disallow broken templatereact-pug/no-interpolation: Disallow JavaScript interpolationreact-pug/no-undef: Disallow undeclared variables in Pugreact-pug/prop-types: Manage prop-types usagereact-pug/quotes: Manage quotes in Pugreact-pug/uses-react: Prevent React to be marked as unusedreact-pug/uses-vars: Prevent variables used in Pug to be marked as unused
Experimental:
react-pug/pug-lint: Inherit pug-lint to validate pug