From 2e112e240666b62b8c3d4fa201fb24b841f6c92b Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Sun, 21 May 2017 00:31:47 +0900 Subject: Improve eslint rules (#3147) * Add semi to ESLint rules * Add padded-blocks to ESLint rules * Add comma-dangle to ESLint rules * add config/webpack and storyboard * add streaming/ * yarn test:lint -- --fix --- app/javascript/mastodon/reducers/reports.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'app/javascript/mastodon/reducers/reports.js') diff --git a/app/javascript/mastodon/reducers/reports.js b/app/javascript/mastodon/reducers/reports.js index eab004377..ad35eaa05 100644 --- a/app/javascript/mastodon/reducers/reports.js +++ b/app/javascript/mastodon/reducers/reports.js @@ -5,7 +5,7 @@ import { REPORT_SUBMIT_FAIL, REPORT_CANCEL, REPORT_STATUS_TOGGLE, - REPORT_COMMENT_CHANGE + REPORT_COMMENT_CHANGE, } from '../actions/reports'; import Immutable from 'immutable'; @@ -14,8 +14,8 @@ const initialState = Immutable.Map({ isSubmitting: false, account_id: null, status_ids: Immutable.Set(), - comment: '' - }) + comment: '', + }), }); export default function reports(state = initialState, action) { -- cgit