feat(web): npm i prettier

This commit is contained in:
Collin Barrett 2025-06-12 18:07:43 -05:00
parent d688a8222b
commit 0b2882b497
5 changed files with 13 additions and 7 deletions

3
web/.prettierignore Normal file
View file

@ -0,0 +1,3 @@
# Ignore artifacts:
build
coverage

1
web/.prettierrc Normal file
View file

@ -0,0 +1 @@
{}

View file

@ -10,7 +10,7 @@ const compat = new FlatCompat({
});
const eslintConfig = [
...compat.extends("next/core-web-vitals", "next/typescript"),
...compat.extends("next/core-web-vitals", "next/typescript", "prettier"),
];
export default eslintConfig;

BIN
web/package-lock.json generated

Binary file not shown.

View file

@ -9,19 +9,21 @@
"lint": "next lint"
},
"dependencies": {
"next": "15.3.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"next": "15.3.3"
"react-dom": "^19.0.0"
},
"devDependencies": {
"typescript": "^5",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@tailwindcss/postcss": "^4",
"tailwindcss": "^4",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"@eslint/eslintrc": "^3"
"eslint-config-prettier": "^10.1.5",
"prettier": "3.5.3",
"tailwindcss": "^4",
"typescript": "^5"
}
}