Skip to content

Commit

Permalink
style: lint 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
Todari committed Aug 15, 2024
1 parent f326aaa commit 0cab0f8
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import {TextSize} from '@components/Text/Text.type';
import {css} from '@emotion/react';

import {TextSize} from '@components/Text/Text.type';

import {Theme} from '@theme/theme.type';

import TYPOGRAPHY from '@token/typography';

interface InputWrapperStyleProps {
Expand Down
1 change: 1 addition & 0 deletions HDesign/src/components/EditableItem/EditableItem.Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import React, {forwardRef, useEffect, useImperativeHandle, useRef, useState} fro
import {InputProps} from '@components/EditableItem/EditableItem.Input.type';

import {useTheme} from '@theme/HDesignProvider';

import {inputStyle, inputWrapperStyle} from './EditableItem.Input.style';
import useEditableItemInput from './useEditableItemInput';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {TextSize} from '@components/Text/Text.type';

import {Theme} from '@theme/theme.type';

export interface InputStyleProps {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import type {Meta, StoryObj} from '@storybook/react';

import EditableItemInput from '@components/EditableItem/EditableItem.Input';

import EditableItem from './EditableItem';
import {EditableItmProvider} from './EditableItem.context';

Expand Down
1 change: 0 additions & 1 deletion HDesign/src/components/EditableItem/EditableItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import React, {useEffect} from 'react';
import {useTheme} from '@theme/HDesignProvider';

import {editableItemStyle} from './EditableItem.style';

import EditableItemInput from './EditableItem.Input';
import {EditableItemProps} from './EditableItem.type';
import {EditableItmProvider, useEditableItemContext} from './EditableItem.context';
Expand Down
1 change: 1 addition & 0 deletions HDesign/src/components/EditableItem/EditableItem.type.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {Theme} from '@theme/theme.type';

import {ColorKeys} from '@token/colors';

export interface EditableItemStyleProps {
Expand Down
1 change: 1 addition & 0 deletions HDesign/src/components/EditableItem/useEditableItem.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {useEffect} from 'react';

import {useEditableItemContext} from './EditableItem.context';

interface UseEditableItemProps {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {useCallback, useEffect, useState} from 'react';

import {useEditableItemContext} from './EditableItem.context';

interface UseEditableItemInputProps {
Expand Down

0 comments on commit 0cab0f8

Please sign in to comment.