Есть ли эквивалент no-inline-comments для TSLint? Или расширение?
no-inline-comments
https://eslint.org/docs/rules/no-inline-comments
Disallow:
const myValue = 42; // The answer of everything.
Do:
// The answer of everything. const myValue = 42;