Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 379 Bytes

File metadata and controls

12 lines (8 loc) · 379 Bytes

TypeScript And Code Style

Linting and formatting

  • ESLint uses @callstack/eslint-config together with typescript-eslint.
  • Important enforced rules include no-console and consistent type imports.
  • Prettier is the formatter.
  • Formatting defaults include single quotes and trailing commas.

Imports

  • Keep imports sorted with eslint-plugin-simple-import-sort.