Skip to content

Commit 25ac226

Browse files
committed
fix(typescript): Turn off explicit-module-boundary-types, too much noise
1 parent 4e1ac62 commit 25ac226

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/eslint-config-zillow-typescript/rules/recommended.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ module.exports = {
2424

2525
// https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/explicit-module-boundary-types.md
2626
'@typescript-eslint/explicit-module-boundary-types': [
27-
// TODO: error?
28-
'warn',
27+
// TODO: move to "strict" variant, enable?
28+
'off',
2929
{
3030
allowArgumentsExplicitlyTypedAsAny: false,
3131
allowDirectConstAssertionInArrowFunctions: true,

packages/eslint-plugin-zillow/test/__snapshots__/eslint-plugin-zillow.test.js.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3101,7 +3101,7 @@ Object {
31013101
},
31023102
],
31033103
"zillow/@typescript-eslint/explicit-module-boundary-types": Array [
3104-
"warn",
3104+
"off",
31053105
Object {
31063106
"allowArgumentsExplicitlyTypedAsAny": false,
31073107
"allowDirectConstAssertionInArrowFunctions": true,

0 commit comments

Comments
 (0)