From 242328fa749ee4c72af93433a9bef95f329ac62f Mon Sep 17 00:00:00 2001 From: Filimonov Andrey Date: Tue, 19 May 2020 00:59:23 +0200 Subject: [PATCH] fix(eslint-plugin): [dot-notation] fix typo in schema (#2040) --- packages/eslint-plugin/src/rules/dot-notation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-plugin/src/rules/dot-notation.ts b/packages/eslint-plugin/src/rules/dot-notation.ts index d1d848aa2ef..3cc2be22deb 100644 --- a/packages/eslint-plugin/src/rules/dot-notation.ts +++ b/packages/eslint-plugin/src/rules/dot-notation.ts @@ -35,7 +35,7 @@ export default createRule({ default: '', }, allowPrivateClassPropertyAccess: { - tyoe: 'boolean', + type: 'boolean', default: false, }, },