TSLint no-inline-comments - PullRequest
       22

TSLint no-inline-comments

0 голосов
/ 18 октября 2019

Есть ли эквивалент no-inline-comments для TSLint? Или расширение?

https://eslint.org/docs/rules/no-inline-comments

Disallow:

const myValue = 42; // The answer of everything.

Do:

// The answer of everything.
const myValue = 42; 
...