Skip to content

Commit

Permalink
Add Oxlint
Browse files Browse the repository at this point in the history
  • Loading branch information
venables committed Jan 5, 2024
1 parent 5af85c4 commit cc00ebf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- [Drizzle](https://orm.drizzle.team) database ORM, configured for [PostgreSQL](https://www.postgresql.org/) and [Drizzle Kit](https://orm.drizzle.team/kit-docs/overview)
- Edge runtime ready.
- Strict, recommended [ESLint](https://eslint.org/) and [Prettier](https://prettier.io/) config using the [Vercel Style Guide](https://github.com/vercel/style-guide) for readable, safe code.
- Extra linting power with [Oxlint](https://oxc-project.github.io)
- [TailwindCSS](https://tailwindcss.com/) for utility-first CSS.
- Gorgeous UI built with [Radix](https://www.radix-ui.com/) and [shadcn/ui](https://ui.shadcn.com/).
- Authentication via [Next Auth](https://next-auth.js.org/) version 5.
Expand Down
1 change: 1 addition & 0 deletions app/(marketing)/features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export function Features() {
title: "Vercel Style Guide",
href: "https://github.com/vercel/style-guide"
},
{ title: "Oxlint", href: "https://oxc-project.github.io" },
{ title: "ESLint + Prettier" },
{ title: "TailwindCSS", href: "https://tailwindcss.com" },
{ title: "Radix UI", href: "https://www.radix-ui.com" },
Expand Down
Binary file modified bun.lockb
Binary file not shown.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"scripts": {
"build": "next build",
"check": "concurrently bun:type-check bun:lint bun:format:check bun:test",
"check": "concurrently bun:type-check bun:oxlint bun:lint bun:format:check bun:test",
"clean": "git clean -xdf .next",
"db": "drizzle-kit",
"db:migrate": "npx tsx ./bin/migrate.ts",
Expand All @@ -16,6 +16,7 @@
"postinstall": "patch-package",
"lint": "next lint",
"outdated": "npx npm-check-updates --interactive --format group",
"oxlint": "oxlint",
"setup": "./bin/setup",
"start": "next start",
"test": "bun test",
Expand Down Expand Up @@ -73,6 +74,7 @@
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next-secure-headers": "^2.2.0",
"oxlint": "^0.0.21",
"patch-package": "^8.0.0",
"pg": "^8.11.3",
"postcss": "^8.4.32",
Expand Down

0 comments on commit cc00ebf

Please sign in to comment.