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,5 +1,6 @@
{
"rules": {
"no-cond-assign": 0
"no-cond-assign": 0,
"@typescript-eslint/explicit-function-return-type": ["off"]
}
}