Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 538 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 538 Bytes

Exove ESLint React configuration

React and JSX specific linter rules.

This package is intended to be used with eslint-config-exove-nodejs which contains generic JavaScript linter rules.

Installation

npm install --save-dev eslint-config-exove-react eslint-config-exove-nodejs

Create a file .eslintrc.js in the same folder where package.json is located with the following contents:

module.exports = {
    extends: [ 'exove-nodejs', 'exove-react' ],
};