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

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

My eslint configuration
https://github.com/koddsson/eslint-config

Last synced: 3 months ago
JSON representation

My eslint configuration

Awesome Lists containing this project

README

          

# eslint-config

This is my eslint configuration. There are many like it but this is mine.

```sh
npm install --save-dev eslint @koddsson/eslint-config
```

Add this to your package.json

```json
"scripts": {
"lint": "eslint \"src/**/*.{js,mjs,ts,mts}\""
}
```

And create a `eslint.config.js` with the config enabled:

```js
import koddssonConfig from "@koddsson/eslint-config";

export default [
...koddssonConfig,
// Rest of your config goes here.
];
```