Skip to content

Commit

Permalink
feat: changed the priorities of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardIvanov22 committed Nov 8, 2021
1 parent 0166594 commit 9d08c8d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
16 changes: 8 additions & 8 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"importOrder": [
"@ant-design/icons",
"@components",
"@atoms",
"@molecules",
"@organisms",
"@redux",
"@utils",
"@models",
"@src",
"@organisms",
"@molecules",
"@atoms",
"@components",
"@hooks",
"@ant-design/icons",
"@constants",
"@styles",
"@utils",
"@assets",
"@styles",
"@src",
"./"
],
"importOrderSeparation": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
import {Badge, Tooltip} from 'antd';
import {DateTime} from 'luxon';
import React, {useCallback} from 'react';
import Drawer from '@components/atoms/Drawer';
import styled from 'styled-components';
import {useCopyToClipboard} from '@hooks/useCopyToClipboard';
import {useAppSelector, useAppDispatch} from '@redux/hooks';

import {useAppDispatch, useAppSelector} from '@redux/hooks';
import {toggleNotifications} from '@redux/reducers/ui';
import {ExclamationCircleOutlined, CheckCircleOutlined, InfoCircleOutlined, CopyOutlined} from '@ant-design/icons';
import Colors, {FontColors} from '@styles/Colors';
import {Badge, Tooltip} from 'antd';

import {AlertEnum, AlertType} from '@models/alert';
import {DateTime} from 'luxon';

import Drawer from '@components/atoms/Drawer';

import {useCopyToClipboard} from '@hooks/useCopyToClipboard';

import {CheckCircleOutlined, CopyOutlined, ExclamationCircleOutlined, InfoCircleOutlined} from '@ant-design/icons';

import Colors, {FontColors} from '@styles/Colors';

const StyledDiv = styled.div`
margin-bottom: 12px;
Expand Down

0 comments on commit 9d08c8d

Please sign in to comment.