Fix eslint rule indent

This commit is contained in:
Pavel Dohnal
2017-07-11 14:19:13 +01:00
parent 53df10dc2b
commit c9c78a7160
17 changed files with 93 additions and 94 deletions

View File

@ -48,7 +48,6 @@
"keyword-spacing": 0, "keyword-spacing": 0,
"default-case": 0, "default-case": 0,
"quote-props": 0, "quote-props": 0,
"indent": 0,
"arrow-parens": 0, "arrow-parens": 0,
"array-callback-return": 0, "array-callback-return": 0,
"consistent-return": 0, "consistent-return": 0,

View File

@ -36,5 +36,5 @@ define(['react', 'classnames'], (React, classNames) => {
}); });
return ListingGroups; return ListingGroups;
} }
); );

View File

@ -2,7 +2,7 @@ define([
'react', 'react',
'classnames', 'classnames',
'mailpoet' 'mailpoet'
], ( ], (
React, React,
classNames, classNames,
MailPoet MailPoet

View File

@ -1,7 +1,7 @@
define([ define([
'mailpoet', 'mailpoet',
'react' 'react'
], ( ], (
MailPoet, MailPoet,
React React
) => { ) => {

View File

@ -32,7 +32,7 @@ const _timeOfDayValues = _.object(_.map(
date.setSeconds(seconds); date.setSeconds(seconds);
const timeLabel = MailPoet.Date.format(date, { format: timeFormat, offset: 0 }); const timeLabel = MailPoet.Date.format(date, { format: timeFormat, offset: 0 });
return [seconds, timeLabel]; return [seconds, timeLabel];
}) })
); );
const _weekDayValues = { const _weekDayValues = {