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',