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

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

My ESLint rules
https://github.com/noeldemartin/eslint-config

Last synced: 7 months ago
JSON representation

My ESLint rules

Awesome Lists containing this project

README

          

# ESLint config

These are the ESLint rules I use in different projects. If you also want to use them, you're most welcome. You can install the packages like this:

```sh
npm install eslint @noeldemartin/eslint-config-typescript --save-dev
```

And use them in your eslint config file:

```js
// .eslintrc.js
module.exports = {
extends: ['@noeldemartin/eslint-config-typescript'],
};
```