From f18b281020beac94ce2233f37201d618e8164a2f 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-extensions/merge_requests/50 --- lint/eslintrc-shell.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lint/eslintrc-shell.json b/lint/eslintrc-shell.json index f0290fed..d2157c2a 100644 --- a/lint/eslintrc-shell.json +++ b/lint/eslintrc-shell.json @@ -1,4 +1,10 @@ { + "rules": { + "object-curly-spacing": [ + "error", + "always" + ] + }, "globals": { "global": false, "_": false,