1.0.2 • Published 1 year ago

@apathoid/eslint-config-react v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

eslint-config-react

Configuration files for eslint.

How to install

npm i -D @apathoid/eslint-config-react

How to use

The package provides config files for two module systems: cjs and esm.

For cjs fill eslint.config.js with this:

const apathyReactConfig = require('@apathoid/eslint-config-react').default;

module.exports = [
    ...apathyReactConfig,
    ...
];

For esm it is necessary to add type: module to project's package.json file. Then add this to eslint.config.js:

import apathyReactConfig from '@apathoid/eslint-config-react';

export default [
    ...apathyReactConfig,
    ...
];
1.0.2

1 year ago

1.0.1

2 years ago

1.0.0

2 years ago