Create FasterCreate Faster

ESLint + Prettier

Combined linting with ESLint and formatting with Prettier, using eslint-config-prettier to avoid rule conflicts.

→ ESLint Documentation · → Prettier Documentation

What create-faster adds

This option composes ESLint and Prettier together, adding eslint-config-prettier to disable ESLint rules that would conflict with Prettier's formatting.

You get everything from both:

  • ESLint stack-specific configs and lint scripts (see ESLint)
  • Prettier config with Tailwind CSS class sorting (see Prettier)
  • eslint-config-prettier to prevent rule conflicts

Additional dependency:

PackagePurpose
eslint-config-prettierDisables ESLint rules that conflict with Prettier

Lint-staged integration: When combined with Husky, both tools run on staged files:

  • eslint --fix for linting
  • prettier --write for formatting

On this page