Skip to content

Commit

Permalink
Fix import order inconsistencies (#2289)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire authored Jul 12, 2023
1 parent a40529f commit 67055b0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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';


Expand Down
1 change: 0 additions & 1 deletion app/javascript/mastodon/features/onboarding/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 67055b0

Please sign in to comment.