chore: add ESLint setup with config, ignore file, and lint script

This commit is contained in:
coaxial
2025-10-23 15:20:07 +02:00
committed by coaxial (aider)
parent f34f5298fc
commit 3375344fd1
3 changed files with 35 additions and 2 deletions

View File

@@ -1,2 +1,11 @@
.eslintrc.js
.eslintignore
{
"name": "my-project",
"version": "1.0.0",
"private": true,
"scripts": {
"lint": "eslint ."
},
"devDependencies": {
"eslint": "^8.0.0"
}
}