Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/movahhedi/eslint-config


https://github.com/movahhedi/eslint-config

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# @movahhedi/eslint-config

## Install

If you prefer to set up manually:

```bash
pnpm i -D eslint @movahhedi/eslint-config
```

And create `eslint.config.mjs` in your project root:

```js
// eslint.config.mjs
import movahhediConfig from "@movahhedi/eslint-config";

export default movahhediConfig();
```

Or if you want to add your own rules:

```js
// eslint.config.mjs
import movahhediConfig from "@movahhedi/eslint-config";

export default [
...movahhediConfig(),
{
rules: {
// your rules
},
},
];
```