diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2017-05-21 00:31:47 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-20 17:31:47 +0200 |
commit | 2e112e240666b62b8c3d4fa201fb24b841f6c92b (patch) | |
tree | f95f2eb5ae8156c10bf16894919d0ba5e3f34096 /app/javascript/mastodon/actions/favourites.js | |
parent | 812fe90ecaef58f1dbe16c3fdfea79e14e7bbc9d (diff) |
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
Diffstat (limited to 'app/javascript/mastodon/actions/favourites.js')
-rw-r--r-- | app/javascript/mastodon/actions/favourites.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/javascript/mastodon/actions/favourites.js b/app/javascript/mastodon/actions/favourites.js index a25c1ae1c..09ce51fce 100644 --- a/app/javascript/mastodon/actions/favourites.js +++ b/app/javascript/mastodon/actions/favourites.js @@ -1,4 +1,4 @@ -import api, { getLinks } from '../api' +import api, { getLinks } from '../api'; export const FAVOURITED_STATUSES_FETCH_REQUEST = 'FAVOURITED_STATUSES_FETCH_REQUEST'; export const FAVOURITED_STATUSES_FETCH_SUCCESS = 'FAVOURITED_STATUSES_FETCH_SUCCESS'; @@ -23,7 +23,7 @@ export function fetchFavouritedStatuses() { export function fetchFavouritedStatusesRequest() { return { - type: FAVOURITED_STATUSES_FETCH_REQUEST + type: FAVOURITED_STATUSES_FETCH_REQUEST, }; }; @@ -31,14 +31,14 @@ export function fetchFavouritedStatusesSuccess(statuses, next) { return { type: FAVOURITED_STATUSES_FETCH_SUCCESS, statuses, - next + next, }; }; export function fetchFavouritedStatusesFail(error) { return { type: FAVOURITED_STATUSES_FETCH_FAIL, - error + error, }; }; @@ -63,7 +63,7 @@ export function expandFavouritedStatuses() { export function expandFavouritedStatusesRequest() { return { - type: FAVOURITED_STATUSES_EXPAND_REQUEST + type: FAVOURITED_STATUSES_EXPAND_REQUEST, }; }; @@ -71,13 +71,13 @@ export function expandFavouritedStatusesSuccess(statuses, next) { return { type: FAVOURITED_STATUSES_EXPAND_SUCCESS, statuses, - next + next, }; }; export function expandFavouritedStatusesFail(error) { return { type: FAVOURITED_STATUSES_EXPAND_FAIL, - error + error, }; }; |