Skip to content

Commit

Permalink
merge: admin UI 퍼블리싱 및 기능 구현 #448
Browse files Browse the repository at this point in the history
[FEAT] admin UI 퍼블리싱 및 기능 구현 (#452)
  • Loading branch information
rbgksqkr authored Jan 5, 2025
2 parents 426da7b + eddfa4f commit 845816f
Show file tree
Hide file tree
Showing 88 changed files with 4,360 additions and 810 deletions.
10 changes: 10 additions & 0 deletions frontend-admin/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"semi": true,
"useTabs": false,
"trailingComma": "all",
"arrowParens": "always",
"endOfLine": "auto"
}
19 changes: 9 additions & 10 deletions frontend-admin/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import tseslint from 'typescript-eslint'
import js from '@eslint/js';
import globals from 'globals';
import reactHooks from 'eslint-plugin-react-hooks';
import reactRefresh from 'eslint-plugin-react-refresh';
import tseslint from 'typescript-eslint';

export default tseslint.config(
{ ignores: ['dist'] },
Expand All @@ -19,10 +19,9 @@ export default tseslint.config(
},
rules: {
...reactHooks.configs.recommended.rules,
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
'no-console': 'error',
'@typescript-eslint/no-unused-vars': 'warn',
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
},
},
)
);
7 changes: 5 additions & 2 deletions frontend-admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
"preview": "vite preview",
"format": "prettier --write ."
},
"dependencies": {
"@emotion/react": "^11.14.0",
Expand All @@ -17,15 +18,17 @@
"react-router-dom": "^7.1.1"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.13.5",
"@eslint/js": "^9.17.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"msw": "^2.7.0",
"prettier": "^3.4.2",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5"
Expand Down
Loading

0 comments on commit 845816f

Please sign in to comment.