Skip to content
Merged
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
37 changes: 34 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,37 @@
{
"extends": [
"next/core-web-vitals",
"plugin:storybook/recommended"
]
}
"plugin:storybook/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": ["@typescript-eslint", "react"],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"no-console": "warn",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"react/react-in-jsx-scope": "off",
"react/prop-types": "off"
}
}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@

본 프로젝트는 [시맨틱 버저닝(Semantic Versioning)](https://semver.org/lang/ko/) 규칙을 따릅니다. 버전 표기 방식은 `MAJOR.MINOR.PATCH`(예: 1.2.3)입니다.

## [1.2.2] - 2025-12-29

**Branch**: `YD-v1.2.2-YD-DATAS컨텐츠추가`

### 추가

- feat: side-proejcts컴포넌트추가
- feat: eslint 규칙 고도화

### 변경

- refactor: 컴포넌트이름변경 area-chart -> posting-data-chart
- refactor: 미사용 interafce선언 제거 및 상위폴더명변경 charts -> yd-datas
- refactor: eslint 규칙 고도화에 따른 소스코드 대규모 수정

### 수정

### 제거

---

## [1.2.1] - 2025-12-12

**Branch**: `YD-v1.2.1-포스팅가지치기`
Expand Down
Loading