-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: eslint migration #2265
base: main
Are you sure you want to change the base?
chore: eslint migration #2265
Conversation
The preview deployment is ready. 🟢 Open Preview | Open Build Logs Last updated at: 2024-12-22 06:23:33 CET |
"lint": "eslint . --ext .js,.ts,.tsx,.jsx", | ||
"lint": "eslint .", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{ | ||
files: ['apps/backend/**/*.spec.ts'], | ||
languageOptions: { | ||
globals: { | ||
...globals.mocha | ||
} | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-unused-expressions': 'off' | ||
} | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- name: Install dev dependencies | ||
run: pnpm install --dev | ||
- name: Install dependencies | ||
run: pnpm install |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AS-IS: Dev 의존성만 설치 -> eslint-config-next/parser.js
에서 next/dist/compiled/babel/eslint-parser
의존성을 찾지 못함
TO-BE: 모든 의존성 설치
(더 나은 해결 방법 있으면 알려주세요..)
cd11a0c
to
0aaeece
Compare
0aaeece
to
53bf8df
Compare
Description
Additional context
Before submitting the PR, please make sure you do the following
fixes #123
).