- 여러 커뮤니티의 감정 데이터를 종합 분석하여 주식 종목별로 점수화하여 지표로 제공하는 서비스
김민수 | 박현수 |
---|---|
durumi99 | Jadest13 |
- ✅
[chore]
: 동작에 영향 없는 코드 or 변경 없는 변경사항(주석 추가 등) - ✨
[feat]
: 새로운 기능 구현 - ➕
[add]
: Feat 이외의 부수적인 코드 추가, 라이브러리 추가, 새로운 파일 생성 - 🔨
[fix]
: 버그, 오류 해결 - ⚰️
[del]
: 쓸모없는 코드 삭제 - 📝
[docs]
: README나 WIKI 등의 문서 수정 - ✏️
[correct]
: 주로 문법의 오류나 타입의 변경, 이름 변경시 - ⏪️
[rename]
: 파일 이름 변경시 - ♻️
[refactor]
: 전면 수정 - 🔀
[merge]
: 다른 브랜치와 병합
ex) commit -m "{#issue number} [feat] user API 구현”
[feat]
: 기능 추가[fix]
: 에러 수정, 버그 수정[docs]
: README, 문서[refactor]
: 코드 리펙토링 (기능 변경 없이 코드만 수정할 때)[modify]
: 코드 수정 (기능의 변화가 있을 때)[chore]
: gradle 세팅, 위의 것 이외에 거의 모든 것
ex) feat/#1-user-api
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptions
property like this:
export default tseslint.config({
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
})
- Replace
tseslint.configs.recommended
totseslint.configs.recommendedTypeChecked
ortseslint.configs.strictTypeChecked
- Optionally add
...tseslint.configs.stylisticTypeChecked
- Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'
export default tseslint.config({
// Set the react version
settings: { react: { version: '18.3' } },
plugins: {
// Add the react plugin
react,
},
rules: {
// other rules...
// Enable its recommended rules
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
},
})