Skip to content

Commit

Permalink
♻️ Replace ESLint and Prettier with Biome to format and lint frontend (
Browse files Browse the repository at this point in the history
…#719)

Co-authored-by: User <alejsdev@gmail.com>
Co-authored-by: Alejandra <90076947+alejsdev@users.noreply.github.com>
  • Loading branch information
3 people committed Mar 17, 2024
1 parent 75fc261 commit 43435d5
Show file tree
Hide file tree
Showing 6 changed files with 335 additions and 2,429 deletions.
18 changes: 0 additions & 18 deletions frontend/.eslintrc.cjs

This file was deleted.

1 change: 0 additions & 1 deletion frontend/.prettierignore

This file was deleted.

8 changes: 0 additions & 8 deletions frontend/.prettierrc

This file was deleted.

31 changes: 31 additions & 0 deletions frontend/biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"$schema": "https://biomejs.dev/schemas/1.6.1/schema.json",
"organizeImports": {
"enabled": true
},
"files": {
"ignore": ["node_modules", "src/client/"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "off",
"noArrayIndexKey": "off"
},
"style": {
"noNonNullAssertion": "off"
}
}
},
"formatter": {
"indentStyle": "space"
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "asNeeded"
}
}
}
Loading

0 comments on commit 43435d5

Please sign in to comment.