https://github.com/rollup/eslint-config-rollup
A shareable ESLint configuration for Rollup projects
https://github.com/rollup/eslint-config-rollup
Last synced: about 1 month ago
JSON representation
A shareable ESLint configuration for Rollup projects
- Host: GitHub
- URL: https://github.com/rollup/eslint-config-rollup
- Owner: rollup
- License: mit
- Created: 2019-09-04T00:23:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-08-09T16:35:21.000Z (almost 3 years ago)
- Last Synced: 2025-04-14T00:13:15.844Z (about 1 month ago)
- Language: JavaScript
- Size: 67.4 KB
- Stars: 9
- Watchers: 14
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config-rollup
A shareable ESLint configuration for Rollup projects
## Install
This repository uses PNPM (https://pnpm.io/)
```
$ pnpm install eslint-config-rollup --save-dev
```## Usage
This config can be used one of two ways:
### package.json:
```json
{
"name": "snoochi-boochies",
"eslintConfig": {
"extends": "rollup"
}
}
```### .eslintrc
```json
{
"extends": "rollup"
}
```
## PrettierThis package also exports the [prettier config](./prettier.js) that is used in the eslint config.
## License
[LICENSE (MIT)](./LICENSE)