From 47dceb6610544a1a5537a864448f5a207c0f04b6 Mon Sep 17 00:00:00 2001 From: Ivan Demidov Date: Mon, 26 Jul 2021 12:02:50 +0300 Subject: [PATCH] build: set object-curly-spacing always --- xo.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xo.config.js b/xo.config.js index da99e0a..f8a0390 100644 --- a/xo.config.js +++ b/xo.config.js @@ -3,6 +3,7 @@ module.exports = { rules: { '@typescript-eslint/prefer-readonly-parameter-types': 'off', 'ava/no-skip-test': 'off', - 'ava/no-only-test': 'off' + 'ava/no-only-test': 'off', + 'object-curly-spacing': ['error','always'] } };