Linting et Style de Code
A linter is a tool that analizes source code to flag programming errors, bugs, stylistic errors, and suspicious constructs. In particular, it helps teams to keep the code consistent between their members.
For example, with ESLint, the rule @typescript-eslint/quotes: single
enforces the use of single quotes throughout the code.
// Valid
const foo = 'bar';
// Invalid
const foo = "bar";