Added Linting and Formating

This commit is contained in:
Ahmad 2024-02-15 20:27:24 -05:00
parent 817cd7f92d
commit d5631b309a
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
4 changed files with 950 additions and 422 deletions

View file

@ -1,3 +1,13 @@
{
"extends": "next/core-web-vitals"
"extends": ["next/core-web-vitals", "prettier"],
"plugins": ["@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parserOptions": {
"project": "./tsconfig.json"
}
}
]
}