Skip to content
Open
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e665ffb
feat: add basic component to shared
annkimm Aug 10, 2025
e1e4a60
feat: add select and dialog in shared
annkimm Aug 10, 2025
24d8815
feat: add components table and comment from page
annkimm Aug 10, 2025
be604e2
feat: add type in entities
annkimm Aug 11, 2025
ab97b29
feat: add typ in feature
annkimm Aug 11, 2025
140d6f6
feat: add api in entities
annkimm Aug 11, 2025
5565388
feat: add Dialog compoent and pagination component
annkimm Aug 12, 2025
20fab5e
feat: add filter and post header component
annkimm Aug 12, 2025
279e4bd
refactor: fix remove comments from detailDialog
annkimm Aug 13, 2025
93be22c
feat: add zustand and store
annkimm Aug 13, 2025
08b3659
feat: add common api logic
annkimm Aug 14, 2025
0590a26
feat: apply code from api common logic
annkimm Aug 14, 2025
f5f9361
feat: add useURL in shared
annkimm Aug 14, 2025
afccb14
feat: add comment custom hook in feature
annkimm Aug 14, 2025
3c16910
feat: add crud comment function in useComment
annkimm Aug 14, 2025
66cf7a8
fix: remove twice json.stringfy
annkimm Aug 14, 2025
deed3e8
feat: add crud function in usePost
annkimm Aug 14, 2025
4dae499
feat: add usePostInfo in hook
annkimm Aug 14, 2025
bb74e5f
feat: add sortBy in fetchPost
annkimm Aug 14, 2025
ec93407
feat: add react-query
annkimm Aug 14, 2025
180374c
feat: add useqeury in post
annkimm Aug 14, 2025
0d15799
feat: add user, comment fetchQuery
annkimm Aug 14, 2025
8a8ff79
feat: add useMutation in post, comment
annkimm Aug 14, 2025
3602c38
feat: convert react-query state from zustand state
annkimm Aug 14, 2025
417c785
feat: prepare for deploying
annkimm Aug 15, 2025
c025022
refactor: fix import link
annkimm Aug 15, 2025
a34a0c3
refactor: remove to move shared pagination
annkimm Aug 15, 2025
e93eb84
refactor: import order in PostList
annkimm Aug 15, 2025
e77db6c
refactor: remove space
annkimm Aug 15, 2025
488b714
refactor: rename folder name feature -> features
annkimm Aug 16, 2025
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
43 changes: 23 additions & 20 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
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 prettier from 'eslint-config-prettier'
import prettierPlugin from 'eslint-plugin-prettier'

export default tseslint.config(
{ ignores: ['dist'] },
export default [
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ['**/*.{ts,tsx}'],
ignores: ['dist', 'node_modules']
},
js.configs.recommended,
prettier,
{
files: ['**/*.{js,ts,tsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
ecmaVersion: 2022,
sourceType: 'module',
globals: {
console: 'readonly',
window: 'readonly',
document: 'readonly',
}
},
plugins: {
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
prettier: prettierPlugin
},
rules: {
...reactHooks.configs.recommended.rules,
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
},
)
'no-unused-vars': 'warn',
'no-console': 'warn',
'prettier/prettier': 'error' // 이제 띄어쓰기도 ESLint 에러로 표시!
}
}
]
Loading