Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 996 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 996 Bytes

Next.js with TypeScript and ESLint

Starter code for a clean Next.js + TypeScript + ESLint project.

More info here: https://paulintrognon.fr/blog/post/typescript-prettier-eslint-next-js

Get started

# Install dependencies
yarn install

# Enable husky
yarn husky install

# Start dev server
yarn dev

What is the difference with official with-typescript-eslint-jest

Vercel made an official similar example template: https://github.com/vercel/next.js/tree/canary/examples/with-typescript-eslint-jest

Main differences are:

  • It uses latest Husky v7 version
  • ESLint and Prettier are integrated with VSCode to fix and format code on save (you need eslint and prettier VSCode plugins)
  • Improved lint-staged configuration: linting will only happen on staged files, not all file
  • TypeScript types are checked before each commit, not just on git push.
  • You can build it yourself by reading the blog post :-)