Fix ESLint object-property-newline in tests

[MAILPOET-1031]
This commit is contained in:
Pavel Dohnal
2017-08-30 15:20:39 +02:00
parent 737a83cdf3
commit 33733219f6
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,6 @@
"one-var": 0, "one-var": 0,
"indent": 0, "indent": 0,
"no-whitespace-before-property": 0, "no-whitespace-before-property": 0,
"object-property-newline": 0,
"global-require": 0, "global-require": 0,
"semi": 0, "semi": 0,
"keyword-spacing": 0, "keyword-spacing": 0,

View File

@ -11,7 +11,8 @@ define([
Backbone.Radio = { Backbone.Radio = {
Requests: { Requests: {
request: function () { request: function () {
}, reply: function () { },
reply: function () {
} }
} }
}; };