Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Background or reasoning for error: TsLint: comment must start with lowercase letter

I'm getting the following TsLint message in my project:

TsLint: comment must start with lowercase letter

Is there any grounding behind this? I agree with most of what I've come across in TsLint, and I'm aware of the ability to turn this warning off.

I'd rather understand why they suggest this particular rule. I read the docs at https://github.com/palantir/tslint#supported-rules which explain what the rule does but not why.

like image 649
Des Horsley Avatar asked Dec 15 '14 06:12

Des Horsley


Video Answer


1 Answers

I asked the author on this one.

This is just a style rule, and can safely be ignored if it's not needed

Personally speaking, I can think of no reason to enforce this rule so I recommend disabling it or ignoring it.

like image 161
Fenton Avatar answered Oct 18 '22 08:10

Fenton