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
This commit is contained in:
Florian Müllner 2019-01-27 22:25:30 +01:00 committed by Georges Basile Stavracas Neto
parent 4c0bd88a2c
commit 109b8e8f38

View File

@ -1,4 +1,11 @@
{
"rules": {
"object-curly-spacing": [
"error",
"always"
]
},
"overrides": [
{
"files": "js/**",