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
- Host: GitHub
- URL: https://github.com/moongoal/eslint-config-moongoal
- Owner: moongoal
- Created: 2023-09-23T10:27:35.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-29T01:13:44.000Z (over 1 year ago)
- Last Synced: 2025-01-18T16:52:50.577Z (over 1 year ago)
- Language: JavaScript
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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": "*"
}
}
```