~cytrogen/masto-fe

67055b034300393bd9a345bc057e86baa848ae35 — Claire 2 years ago a40529f
Fix import order inconsistencies (#2289)

M .eslintrc.js => .eslintrc.js +6 -1
@@ 247,7 247,12 @@ module.exports = {
          },
          // Internal packages
          {
            pattern: '{mastodon/**,flavours/glitch-soc/**}',
            pattern: '{mastodon/**}',
            group: 'internal',
            position: 'after',
          },
          {
            pattern: '{flavours/glitch-soc/**}',
            group: 'internal',
            position: 'after',
          },

M app/javascript/flavours/glitch/features/public_timeline/index.jsx => app/javascript/flavours/glitch/features/public_timeline/index.jsx +1 -1
@@ 13,8 13,8 @@ import { expandPublicTimeline } from 'flavours/glitch/actions/timelines';
import Column from 'flavours/glitch/components/column';
import ColumnHeader from 'flavours/glitch/components/column_header';
import DismissableBanner from 'flavours/glitch/components/dismissable_banner';
import { domain } from 'flavours/glitch/initial_state';
import StatusListContainer from 'flavours/glitch/features/ui/containers/status_list_container';
import { domain } from 'flavours/glitch/initial_state';

import ColumnSettingsContainer from './containers/column_settings_container';


M app/javascript/mastodon/features/getting_started/components/announcements.jsx => app/javascript/mastodon/features/getting_started/components/announcements.jsx +0 -1
@@ 13,7 13,6 @@ import spring from 'react-motion/lib/spring';
import ReactSwipeableViews from 'react-swipeable-views';

import elephantUIPlane from 'mastodon/../images/elephant_ui_plane.svg';

import { AnimatedNumber } from 'mastodon/components/animated_number';
import { Icon }  from 'mastodon/components/icon';
import { IconButton } from 'mastodon/components/icon_button';

M app/javascript/mastodon/features/home_timeline/components/explore_prompt.jsx => app/javascript/mastodon/features/home_timeline/components/explore_prompt.jsx +0 -1
@@ 5,7 5,6 @@ import { FormattedMessage } from 'react-intl';
import { Link } from 'react-router-dom';

import background from 'mastodon/../images/friends-cropped.png';

import DismissableBanner from 'mastodon/components/dismissable_banner';



M app/javascript/mastodon/features/onboarding/index.jsx => app/javascript/mastodon/features/onboarding/index.jsx +0 -1
@@ 12,7 12,6 @@ import { connect } from 'react-redux';
import { debounce } from 'lodash';

import illustration from 'mastodon/../images/elephant_ui_conversation.svg';

import { fetchAccount } from 'mastodon/actions/accounts';
import { focusCompose } from 'mastodon/actions/compose';
import { closeOnboarding } from 'mastodon/actions/onboarding';