From 8556a22fd6dde43138e1033432dd3a2b83f379f0 Mon Sep 17 00:00:00 2001 From: Maribeth Bottorff Date: Tue, 16 Aug 2022 16:02:50 -0700 Subject: [PATCH] chore: don't require types on return --- .eslintrc.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 56c892f04..268f1361b 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -139,7 +139,9 @@ // TsDoc rules (using JsDoc plugin) // Disable built-in jsdoc verifier. "valid-jsdoc": ["off"], - "jsdoc/require-param-type": ["off"] + // Don't require types in params and returns docs. + "jsdoc/require-param-type": ["off"], + "jsdoc/require-returns-type": ["off"] } }]