Skip to content

Commit e02db84

Browse files
committed
chore: ESLint에서 .yarn 및 .pnp 파일 제외
- .yarn/sdks, .pnp.cjs 등 yarn berry 내부 파일이 lint 대상에 포함되는 문제 수정
1 parent 45daad8 commit e02db84

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import tseslint from 'typescript-eslint';
66
import { defineConfig, globalIgnores } from 'eslint/config';
77

88
export default defineConfig([
9-
globalIgnores(['dist']),
9+
globalIgnores(['dist', '.yarn/', '.pnp.cjs', '.pnp.loader.mjs']),
1010
{
1111
files: ['**/*.{ts,tsx}'],
1212
extends: [

0 commit comments

Comments
 (0)