From dd16fafa3950ad7314d46abe0d72db97ebbc585f Mon Sep 17 00:00:00 2001 From: Brad Zacher Date: Tue, 13 Aug 2019 11:22:36 -0700 Subject: [PATCH] format --- packages/eslint-plugin/src/rules/ban-types.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/eslint-plugin/src/rules/ban-types.ts b/packages/eslint-plugin/src/rules/ban-types.ts index dd7895ab6b5..511c27385c3 100644 --- a/packages/eslint-plugin/src/rules/ban-types.ts +++ b/packages/eslint-plugin/src/rules/ban-types.ts @@ -102,11 +102,13 @@ export default util.createRule({ fixWith: 'number', }, Object: { - message: 'The Object type is mostly the same as unknown, you probably want Record instead', + message: + 'The Object type is mostly the same as unknown, you probably want Record instead' }, object: { - message: 'The object type is hard to use, use Record instead', - fixWith: 'Record', + message: + 'The object type is hard to use, use Record instead', + fixWith: 'Record' }, Symbol: { message: 'Use symbol instead',