Skip to content

Commit

Permalink
ESLint 설정 제거 및 CI 구성 업데이트: lint 단계 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeonbungi committed Nov 27, 2024
1 parent 3352e2c commit ea695f7
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 1,782 deletions.
20 changes: 0 additions & 20 deletions .eslintrc.json

This file was deleted.

3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@ jobs:
node-version: '22'
- run: npm install
- run: npm run format
- run: npm run lint
# - run: npm test
- run: npm run build
- run: npm run start
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,5 @@ yarn-error.log*
.idea/
.DS_Store

# ESLint cache
.eslintcache

# Prettier
.prettierignore
11 changes: 1 addition & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TypeScript Playground

이 프로젝트는 TypeScript로 작성된 Node.js 애플리케이션입니다. 이 프로젝트는 nodemon을 사용하여 코드 변경을 자동으로 감지하고, ESLint와 Prettier를 사용하여 코드 품질을 유지하며, 엄격한 TypeScript 설정을 통해 안전한 코드를 작성하는 것을 목표로 합니다.
이 프로젝트는 TypeScript로 작성된 Node.js 애플리케이션입니다. 이 프로젝트는 nodemon을 사용하여 코드 변경을 자동으로 감지하고, Prettier를 사용하여 코드 품질을 유지하며, 엄격한 TypeScript 설정을 통해 안전한 코드를 작성하는 것을 목표로 합니다.

## 프로젝트 설정

Expand Down Expand Up @@ -47,14 +47,6 @@ npm run build
npm run start
```

### 코드 린트

ESLint를 사용하여 코드를 린트합니다. 이 명령어는 `.ts` 확장자를 가진 모든 파일을 검사합니다.

```bash
npm run lint
```

### 코드 포맷팅

Prettier를 사용하여 코드를 포맷팅합니다.
Expand All @@ -76,7 +68,6 @@ typescript-playground/
├── .github/ # GitHub Actions 설정 파일
│ └── workflows/
│ └── ci.yml # CI 설정 파일
├── .eslintrc.json # ESLint 설정 파일
├── .prettierrc # Prettier 설정 파일
├── .gitignore # Git 무시 파일
├── Dockerfile # Docker 설정 파일
Expand Down
Loading

0 comments on commit ea695f7

Please sign in to comment.