-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* eslint 설정 수정 및 lint script 수정 (#3) * Update action-check-pr.yaml (#2) pnpm을 전역으로 설치 * pr check action 오류 수정 (#4) * pr check action 오류 수정 * gitignore prettier 설정 포함 * path alias 설정 및 index.html public 하위로 이동 * action 라벨 라이브러리 수정 * 라벨 추가를 위한 권한 설정 * 액션 오류 수정 * README 업데이트 - 디렉토리 구조 추가 (#1) * README 업데이트 - 디렉토리 구조 추가 * pr check action 추가 Create action-check-pr.yaml * eslint 설정 수정 및 lint script 수정 (#3) * Update action-check-pr.yaml (#2) pnpm을 전역으로 설치 * pr check action 오류 수정 (#4) * pr check action 오류 수정 * gitignore prettier 설정 포함 * path alias 설정 및 index.html public 하위로 이동 * action 라벨 라이브러리 수정 * 라벨 추가를 위한 권한 설정 * 액션 오류 수정
- Loading branch information
Showing
11 changed files
with
88 additions
and
38 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
node_modules | ||
.prettierrc | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"semi": true, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"tabWidth": 2, | ||
"printWidth": 120 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { defineConfig } from 'eslint-define-config'; | ||
import reactPlugin from 'eslint-plugin-react'; | ||
import typescriptPlugin from '@typescript-eslint/eslint-plugin'; | ||
|
||
export default defineConfig([ | ||
{ | ||
files: ['*.ts', '*.tsx'], // TypeScript 파일에 대한 설정 | ||
languageOptions: { | ||
parser: '@typescript-eslint/parser', // 타입스크립트 파서 | ||
}, | ||
plugins: { | ||
react: reactPlugin, | ||
'@typescript-eslint': typescriptPlugin, | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'warn', | ||
'@typescript-eslint/no-unused-vars': 'warn', | ||
}, | ||
settings: { | ||
react: { | ||
version: 'detect', | ||
}, | ||
}, | ||
extends: ['eslint:recommended', 'plugin:react/recommended', 'plugin:@typescript-eslint/recommended', 'prettier'], | ||
}, | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters