Files
gnome-shell-extensions/lint/eslintrc-shell.json
T
Florian Müllner f18b281020 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
2019-01-28 06:49:54 +01:00

16 lines
248 B
JSON

{
"rules": {
"object-curly-spacing": [
"error",
"always"
]
},
"globals": {
"global": false,
"_": false,
"C_": false,
"N_": false,
"ngettext": false
}
}