Skip to content

Commit

Permalink
chore: eslint extends ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 committed Jun 22, 2024
1 parent e52e9de commit f337eb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/eslint-config/library.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const project = resolve(process.cwd(), 'tsconfig.json');

/** @type {import("eslint").Linter.Config} */
module.exports = {
extends: ['eslint:recommended', 'prettier', 'turbo'],
extends: ['eslint:recommended', 'plugin:react/recommended', 'prettier', 'turbo'],
plugins: ['@typescript-eslint', 'only-warn', 'import'],
globals: {
React: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/core/eslint-config/react-internal.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const project = resolve(process.cwd(), 'tsconfig.json');

/** @type {import("eslint").Linter.Config} */
module.exports = {
extends: ['eslint:recommended', 'prettier', 'turbo'],
extends: ['eslint:recommended', 'plugin:react/recommended', 'prettier', 'turbo'],
plugins: ['@typescript-eslint', 'only-warn', 'import'],
globals: {
React: true,
Expand Down

0 comments on commit f337eb5

Please sign in to comment.