chore: don't require types on return

This commit is contained in:
Maribeth Bottorff
2022-08-16 16:02:50 -07:00
parent c08528ce5c
commit 8556a22fd6

View File

@@ -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"]
}
}]