⚙️ Add Prettier and ESLint config with pre-commit (#640)

This commit is contained in:
Alejandra
2024-03-08 00:08:07 +01:00
committed by GitHub
parent 6c41e30263
commit 1b8b42cee5
8 changed files with 3572 additions and 221 deletions

View File

@@ -0,0 +1,13 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["standard-with-typescript", "plugin:react/recommended"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react"],
"rules": {}
}