Add standard NPM automation

- Prettier for code formatting
- ESLint for linting
- Standard configuration files

🤖 Generated with Claude Code
This commit is contained in:
Alexa Louise
2025-12-28 22:12:13 -06:00
parent fea7a86864
commit 1fac881b3c
3 changed files with 18 additions and 0 deletions

11
.eslintrc.json Normal file
View File

@@ -0,0 +1,11 @@
{
"extends": ["eslint:recommended"],
"env": {
"node": true,
"es2021": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
}
}

6
.prettierrc Normal file
View File

@@ -0,0 +1,6 @@
{
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
}

View File

@@ -25,6 +25,7 @@
"@types/react-dom": "^19", "@types/react-dom": "^19",
"eslint": "^9", "eslint": "^9",
"eslint-config-next": "16.1.1", "eslint-config-next": "16.1.1",
"prettier": "^3.7.4",
"tailwindcss": "^4", "tailwindcss": "^4",
"typescript": "^5" "typescript": "^5"
} }