@@ -286,6 +286,7 @@ Array<string>
286286* `` "miss-space-between" ``
287287* `` "miss-symbol" ``
288288* `` "missing-global-doc" ``
289+ * `` "missing-local-export-doc" ``
289290* `` "missing-parameter" ``
290291* `` "missing-return" ``
291292* `` "missing-return-value" ``
@@ -453,6 +454,7 @@ object<string, string>
453454 * duplicate-doc-param
454455 * incomplete-signature-doc
455456 * missing-global-doc
457+ * missing-local-export-doc
456458 * undefined-doc-class
457459 * undefined-doc-name
458460 * undefined-doc-param
@@ -578,6 +580,7 @@ object<string, string>
578580 * duplicate-doc-param
579581 * incomplete-signature-doc
580582 * missing-global-doc
583+ * missing-local-export-doc
581584 * undefined-doc-class
582585 * undefined-doc-name
583586 * undefined-doc-param
@@ -814,6 +817,10 @@ object<string, string>
814817 */
815818 " missing-global-doc" : " None" ,
816819 /*
820+ Enable diagnostics for exported local function definitions which are not fully annotated.
821+ */
822+ " missing-local-export-doc" : " None" ,
823+ /*
817824 Enable diagnostics for function calls where the number of arguments is less than the number of annotated function parameters.
818825 */
819826 " missing-parameter" : " Any" ,
@@ -1074,6 +1081,10 @@ object<string, string>
10741081 */
10751082 " missing-global-doc" : " Warning" ,
10761083 /*
1084+ Enable diagnostics for exported local function definitions which are not annotated.
1085+ */
1086+ " missing-local-export-doc" : " Warning" ,
1087+ /*
10771088 Enable diagnostics for function calls where the number of arguments is less than the number of annotated function parameters.
10781089 */
10791090 " missing-parameter" : " Warning" ,
0 commit comments