https://github.com/nice-digital/eslint-config
Shared ESLint config for use in NICE Digital Services
https://github.com/nice-digital/eslint-config
eslint eslint-config
Last synced: about 2 months ago
JSON representation
Shared ESLint config for use in NICE Digital Services
- Host: GitHub
- URL: https://github.com/nice-digital/eslint-config
- Owner: nice-digital
- License: mit
- Created: 2017-10-16T11:18:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-02-06T08:31:00.000Z (over 6 years ago)
- Last Synced: 2025-11-18T14:38:06.515Z (7 months ago)
- Topics: eslint, eslint-config
- Language: JavaScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config
> Shared ESLint config for use in NICE Digital Services
## Usage
```
npm i @nice-digital/eslint-config --save-dev
```
Then in your project's *.eslintrc*:
```json
{
"extends": "@nice-digital/eslint-config"
}
```
Or to use ES6:
```json
{
"extends": "@nice-digital/eslint-config/es6"
}
```
Or to use [FlowType annotations](https://flow.org/en/):
```sh
npm i babel-eslint eslint-plugin-flowtype --save-dev
```
```json
{
"extends": "@nice-digital/eslint-config/es6-flow"
}
```