@@ -240,6 +240,7 @@ Array<string>
240240* `` "exp-in-action" ``
241241* `` "global-element" ``
242242* `` "global-in-nil-env" ``
243+ * `` "incomplete-signature-doc" ``
243244* `` "index-in-func-name" ``
244245* `` "invisible" ``
245246* `` "jump-local-scope" ``
@@ -284,6 +285,7 @@ Array<string>
284285* `` "miss-sep-in-table" ``
285286* `` "miss-space-between" ``
286287* `` "miss-symbol" ``
288+ * `` "missing-global-doc" ``
287289* `` "missing-parameter" ``
288290* `` "missing-return" ``
289291* `` "missing-return-value" ``
@@ -449,6 +451,8 @@ object<string, string>
449451 * duplicate-doc-alias
450452 * duplicate-doc-field
451453 * duplicate-doc-param
454+ * incomplete-signature-doc
455+ * missing-global-doc
452456 * undefined-doc-class
453457 * undefined-doc-name
454458 * undefined-doc-param
@@ -572,6 +576,8 @@ object<string, string>
572576 * duplicate-doc-alias
573577 * duplicate-doc-field
574578 * duplicate-doc-param
579+ * incomplete-signature-doc
580+ * missing-global-doc
575581 * undefined-doc-class
576582 * undefined-doc-name
577583 * undefined-doc-param
@@ -792,6 +798,10 @@ object<string, string>
792798 */
793799 " global-in-nil-env" : " Any" ,
794800 /*
801+ Enable diagnostics for function definitions which are not fully annotated.
802+ */
803+ " incomplete-signature-doc" : " None" ,
804+ /*
795805 Enable diagnostics for accesses to fields which are invisible.
796806 */
797807 " invisible" : " Any" ,
@@ -800,6 +810,10 @@ object<string, string>
800810 */
801811 " lowercase-global" : " Any" ,
802812 /*
813+ Enable diagnostics for global function definitions which are not fully annotated.
814+ */
815+ " missing-global-doc" : " None" ,
816+ /*
803817 Enable diagnostics for function calls where the number of arguments is less than the number of annotated function parameters.
804818 */
805819 " missing-parameter" : " Any" ,
@@ -1044,6 +1058,10 @@ object<string, string>
10441058 */
10451059 " global-in-nil-env" : " Warning" ,
10461060 /*
1061+ Enable diagnostics for function definitions which are not fully annotated.
1062+ */
1063+ " incomplete-signature-doc" : " Warning" ,
1064+ /*
10471065 Enable diagnostics for accesses to fields which are invisible.
10481066 */
10491067 " invisible" : " Warning" ,
@@ -1052,6 +1070,10 @@ object<string, string>
10521070 */
10531071 " lowercase-global" : " Information" ,
10541072 /*
1073+ Enable diagnostics for global function definitions which are not annotated.
1074+ */
1075+ " missing-global-doc" : " Warning" ,
1076+ /*
10551077 Enable diagnostics for function calls where the number of arguments is less than the number of annotated function parameters.
10561078 */
10571079 " missing-parameter" : " Warning" ,
0 commit comments