@@ -51,16 +51,16 @@ The `recommended` configuration is catered for TypeScript, and enforces stricter
5151
5252### Rules  
5353
54- |  Rule                                       |  Severity |  Notes                                           | 
55- |  ------------------------------------------ |  -------- |  ----------------------------------------------- | 
56- |  Indent: Tabs                               |  ⚠️ Warn  |                                                  | 
57- |  JSDoc: Check tag names                     |  ⚠️ Warn  |                                                  | 
58- |  JSDoc: No undefined types                  |  ⚠️ Warn  |                                                  | 
59- |  JSDoc: Require JSDoc                       |  ⚠️ Warn  |                                                  | 
60- |  TypeScript: Explicit function return types |  ⚠️ Warn  |  Disabled for JavaScript, tests, and mock files. | 
61- |  TypeScript: Explicit member accessibility  |  ⚠️ Warn  |  No ` public `  required ` constructor ` .             | 
62- |  TypeScript: Member ordering                |  ⚠️ Warn  |  Grouped by type, sub-grouped by accessibility.   | 
63- |  TypeScript: Sort type contituents          |  ⚠️ Warn  |                                                  | 
54+ |  Rule                                       |  Severity |  Notes                                                          | 
55+ |  ------------------------------------------ |  -------- |  -------------------------------------------------------------  | 
56+ |  Indent: Tabs                               |  ⚠️ Warn  |                                                                 | 
57+ |  JSDoc: Check tag names                     |  ⚠️ Warn  |                                                                 | 
58+ |  JSDoc: No undefined types                  |  ⚠️ Warn  |                                                                 | 
59+ |  JSDoc: Require JSDoc                       |  ⚠️ Warn  |                                                                 | 
60+ |  TypeScript: Explicit function return types |  ⚠️ Warn  |  Disabled for JavaScript, tests, and mock files.                | 
61+ |  TypeScript: Explicit member accessibility  |  ⚠️ Warn  |  No ` public `  required ` constructor ` .                            | 
62+ |  TypeScript: Member ordering                |  ⚠️ Warn  |  Grouped by type and then access, and ordered alphabetically .  | 
63+ |  TypeScript: Sort type contituents          |  ⚠️ Warn  |                                                                 | 
6464
6565Additionally, the following rules are disabled for test and mock files:
6666
@@ -83,7 +83,7 @@ Additionally, the following rules are disabled for test and mock files:
8383
8484## Member Ordering  
8585
86- Members of a class should be grouped by type,  and then sub-grouped within those types by accessibility . The orders are  as follows:
86+ Members of a class should be grouped by type and then by access, and ordered alphabetically . The ordersing is  as follows:
8787
8888** Type Order** 
8989
@@ -93,7 +93,7 @@ Members of a class should be grouped by type, and then sub-grouped within those
9393-  Properties (get / set)
9494-  Methods
9595
96- ** Accessibility  Order** 
96+ ** Access  Order** 
9797
9898-  Public (static / abstract / regular)
9999-  Protected (static / abstract / regular)
0 commit comments