From 109b8e8f38ff0be94e3cb2fab90ca1dc916af71e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 27 Jan 2019 22:25:30 +0100 Subject: [PATCH] lint: Require spaces inside braces in object literals Prohibiting spaces where the established GNOME style has required them for a decade would be a harsh change for no good reason. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/609 --- lint/eslintrc-shell.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lint/eslintrc-shell.json b/lint/eslintrc-shell.json index f59417c44..f2524a6df 100644 --- a/lint/eslintrc-shell.json +++ b/lint/eslintrc-shell.json @@ -1,4 +1,11 @@ { + "rules": { + "object-curly-spacing": [ + "error", + "always" + ] + }, + "overrides": [ { "files": "js/**",