Skip to content

Commit

Permalink
fix: 충돌 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
imddoy committed Jul 10, 2024
2 parents d42ba0b + 0fb7f04 commit bfcb5ae
Show file tree
Hide file tree
Showing 7 changed files with 76 additions and 170 deletions.
6 changes: 3 additions & 3 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const jsConfig = {
curly: "error",
quotes: ["error", "double"],
"comma-style": ["error", "last"],
"no-unused-vars": ["off", { varsIgnorePattern: "^React$" }],
"no-unused-vars": ["warn", { varsIgnorePattern: "^React$" }],
"no-console": "warn",
"no-extra-semi": "error",
"no-unused-expressions": "error",
Expand Down Expand Up @@ -64,8 +64,8 @@ const jsConfig = {
"no-new-wrappers": "error",
"no-restricted-globals": "error",
"no-return-assign": "warn",
"@typescript-eslint/no-explicit-any": "off", // any 허용
"@typescript-eslint/no-unused-vars": ["off", { varsIgnorePattern: "^React$" }], // 'React' 사용 안해도 경고하지 않도록 설정
"@typescript-eslint/no-explicit-any": "warn", // any 허용
"@typescript-eslint/no-unused-vars": ["warn", { varsIgnorePattern: "^React$" }], // 'React' 사용 안해도 경고하지 않도록 설정
},
settings: {
react: {
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,21 +65,21 @@
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/shelljs": "^0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@yarnpkg/pnpify": "^4.1.0",
"@yarnpkg/sdks": "^3.1.3",
"chromatic": "^11.5.4",
"eslint": "8.56.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-react-refresh": "^0.4.8",
"eslint-plugin-storybook": "^0.8.0",
"globals": "^15.6.0",
"husky": "^8.0.0",
Expand Down
4 changes: 2 additions & 2 deletions src/pages/nonMbLookup/NonMbLookup.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { useState, useEffect } from "react";
import { useEffect, useState } from "react";
import * as S from "./NonMbLookup.styled";

import useModal from "@hooks/useModal";

import InputWrapper from "./components/InputWrapper";
import Button from "@components/commons/button/Button";
import InputWrapper from "./components/InputWrapper";

const NonMbLookup = () => {
const { openAlert } = useModal();
Expand Down
2 changes: 1 addition & 1 deletion src/pages/nonMbLookup/components/InputWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const InputWrapper = ({ btnOn, btnOff, isReadyRequest, dataStatus }: InputProps)
filter={numericFilter}
maxLength={4}
/>
<S.EyeTest onClick={handlePwd}>버튼 임시 위치!!!!!!!</S.EyeTest>
{/* <S.EyeTest onClick={handlePwd}>버튼 임시 위치!!!!!!!</S.EyeTest> */}
</S.InputWrapperLayout>
);
};
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import Lookup from "@pages/lookup/Lookup";
import Manage from "@pages/manage/Manage";
import ModalTest from "@pages/ModalTest";
import MyRegisterdShow from "@pages/MyRegisterdShow/MyRegisterdShow";
import NonMbLookup from "@pages/nonMbLookup/NonMbLookup";
import Register from "@pages/register/Register";
import TestPage from "@pages/test/TestPage";
import ViewBottomSheetTest from "@pages/ViewBottomSheetTest";
import NonMbLookup from "@pages/nonMbLookup/NonMbLookup";
import { createBrowserRouter } from "react-router-dom";
import RegisterComplete from "@pages/register/RegisterComplete";

Expand Down
8 changes: 4 additions & 4 deletions tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"jsx": "react-jsx",

/* Linting */
"strict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": false,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,

"baseUrl": "./",
"paths": {
Expand Down
Loading

0 comments on commit bfcb5ae

Please sign in to comment.