Add explicit return type linting to some extensions (#19199)

This commit is contained in:
Charles Gagnon
2022-04-25 11:24:23 -07:00
committed by GitHub
parent a7ba78b186
commit 72a43854f8
40 changed files with 202 additions and 18 deletions

View File

@@ -1,6 +1,7 @@
{
"rules": {
"no-cond-assign": 2,
"jsdoc/check-param-names": "error"
"jsdoc/check-param-names": "error",
"@typescript-eslint/explicit-function-return-type": ["error"]
}
}