- Prettier for code formatting
- ESLint for linting
- Standard configuration files
🤖 Generated with Claude Code
12 lines
175 B
JSON
12 lines
175 B
JSON
{
|
|
"extends": ["eslint:recommended"],
|
|
"env": {
|
|
"node": true,
|
|
"es2021": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
}
|
|
}
|