An open API service indexing awesome lists of open source software.

https://github.com/clebert/onecfg-lib-eslint

An ESLint config for use in onecfg projects.
https://github.com/clebert/onecfg-lib-eslint

Last synced: about 1 year ago
JSON representation

An ESLint config for use in onecfg projects.

Awesome Lists containing this project

README

          

# onecfg-lib-eslint

> An ESLint config for use in onecfg projects.

## Installation

```sh
npm install onecfg-lib-eslint
```

## Usage Example

`eslint.config.js`:

```js
import { createConfigs } from 'onecfg-lib-eslint';

export default [
{ ignores: [`dist/`, `lib/`] },

...createConfigs({
browser: true,
node: true,
}),
];
```