https://github.com/praneetrohida/customize-cra-eslint-ignore
https://github.com/praneetrohida/customize-cra-eslint-ignore
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/praneetrohida/customize-cra-eslint-ignore
- Owner: praneetrohida
- License: mit
- Created: 2019-08-30T08:06:39.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T09:12:52.000Z (over 2 years ago)
- Last Synced: 2025-04-04T12:08:22.875Z (3 months ago)
- Language: TypeScript
- Size: 1.08 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://badge.fury.io/js/customize-cra-eslint-ignore)
# customize-cra-eslint-ignore
Enable `.eslintignore` support in [create-react-app](https://github.com/facebook/create-react-app) using [customize-cra](https://github.com/arackaf/customize-cra)
### Install
```
yarn add -D customize-cra-eslint-ignore
```### Usage
config-overrides.js```js
const {
override
} = require('customize-cra');const enableEslintIgnore = require('customize-cra-eslint-ignore');
module.exports = (config, env) => {
config = override(
enableEslintIgnore(),
// ...other overrides
)(config);
return config;
};```