From e7ccca22939fe791d7086bae899e48793c807d04 Mon Sep 17 00:00:00 2001 From: William Neely Date: Tue, 2 Apr 2019 13:55:36 -0400 Subject: [PATCH] fix unclear rule description --- src/rules/noParameterPropertiesRule.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rules/noParameterPropertiesRule.ts b/src/rules/noParameterPropertiesRule.ts index e9e0cfb4e25..7d132dbabc7 100644 --- a/src/rules/noParameterPropertiesRule.ts +++ b/src/rules/noParameterPropertiesRule.ts @@ -29,7 +29,7 @@ export class Rule extends Lint.Rules.AbstractRule { Parameter properties can be confusing to those new to TS as they are less explicit than other ways of declaring and initializing class members. - It can be cleaner to keep member variable declarations in one list directly only the class + It can be cleaner to keep member variable declarations in one list directly above the class constructor (instead of mixed between direct class members and constructor parameter properties). `, optionsDescription: "Not configurable.",