Skip to content

5.0 | Static analysis tools

zalan-racz-gaijin edited this page Jun 13, 2024 · 1 revision

ESLint

ESLint is a static analysis tool for finding problems in TypeScript (and JavaScript) code, without running it. You can use it by running the eslint script, and you can find the configuration in .eslintrc.js. The CI pipeline also uses it, and you won't be able to merge a Pull Request without the pipeline succeeding.

Prettier

Prettier also does linting, however, it has its own page.

Useful resources