diff --git a/packages/eslint-plugin/src/rules/ban-types.ts b/packages/eslint-plugin/src/rules/ban-types.ts index 5e76357fa0e..963b652c896 100644 --- a/packages/eslint-plugin/src/rules/ban-types.ts +++ b/packages/eslint-plugin/src/rules/ban-types.ts @@ -96,11 +96,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',