ESLint + Prettier
Combined linting with ESLint and formatting with Prettier, using eslint-config-prettier to avoid rule conflicts.
Dependencies
→ 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-prettierto prevent rule conflicts
Additional dependency:
| Package | Purpose |
|---|---|
eslint-config-prettier | Disables ESLint rules that conflict with Prettier |
Lint-staged integration: When combined with Husky, both tools run on staged files:
eslint --fixfor lintingprettier --writefor formatting

