refactor: remove biome configuration and update dependencies

- Deleted the obsolete biome.json file to streamline project configuration.
- Updated package.json and bun.lock to include new ESLint and Prettier dependencies for improved code quality and consistency.
- Added ESLint configuration package for better linting support across the project.
- Cleaned up various package dependencies to ensure a more maintainable and efficient codebase.
This commit is contained in:
2025-11-08 17:16:43 -03:00
parent 4e30d6a2ba
commit 57b5f6821b
15 changed files with 2951 additions and 2528 deletions

View File

@@ -0,0 +1,7 @@
import { config } from '@sgse-app/eslint-config/convex';
import { defineConfig } from 'eslint/config';
/** @type {import("eslint").Linter.Config} */
export default defineConfig([
...config,
]);

View File

@@ -9,6 +9,7 @@
"license": "ISC",
"description": "",
"devDependencies": {
"@sgse-app/eslint-config": "*",
"@types/cookie": "^1.0.0",
"@types/estree": "^1.0.8",
"@types/nodemailer": "^7.0.3",
@@ -17,7 +18,8 @@
"@types/pako": "^2.0.4",
"@types/raf": "^3.4.3",
"@types/trusted-types": "^2.0.7",
"typescript": "catalog:"
"typescript": "catalog:",
"eslint": "catalog:"
},
"dependencies": {
"@convex-dev/better-auth": "^0.9.7",