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

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

Personal ESLint configuration file
https://github.com/moongoal/eslint-config-moongoal

Last synced: over 1 year ago
JSON representation

Personal ESLint configuration file

Awesome Lists containing this project

README

          

# Personal ESLint configuration file

Example usage

```javascript
/** @type {import("eslint").Linter.Config} */
const config = {
root: true,
env: {
node: true,
es2022: true
},
extends: ["moongoal"]
};

module.exports = config;
```

Recommended versioning

```json
{
"name": "my-project",
"version": "1.0.0",
"devDependencies": {
"eslint-config-moongoal": "*"
}
}
```