Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,3 @@ coverage/ # ⬅️ 추가: 테스트 커버리지 리포트
*.njsproj
*.sln
*.sw?

*storybook.log
storybook-static
20 changes: 0 additions & 20 deletions .storybook/main.js

This file was deleted.

20 changes: 0 additions & 20 deletions .storybook/preview.js

This file was deleted.

7 changes: 0 additions & 7 deletions .storybook/vitest.setup.js

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# 파트2 1팀 기초 프로젝트
// 임시 변경: PR테스트용
7 changes: 2 additions & 5 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// For more info, see https://github.com/storybookjs/eslint-plugin-storybook#configuration-flat-config-format
import storybook from "eslint-plugin-storybook";

import js from '@eslint/js';
import globals from 'globals';
import reactHooks from 'eslint-plugin-react-hooks';
Expand Down Expand Up @@ -28,8 +25,8 @@ export default defineConfig([
},
},
rules: {
'no-unused-vars': ['wran', { varsIgnorePattern: '^[A-Z_]' }],
'prettier/prettier': 'wran',
'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }],
'prettier/prettier': 'error',
},
},
]);
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/svg+xml" />
<link
rel="stylesheet"
as="style"
Expand All @@ -14,6 +14,6 @@
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading