Skip to content

Commit

Permalink
Merge pull request #3 from mikmera/develop
Browse files Browse the repository at this point in the history
refactor: Update eslint.config.js and package.json dependencies
  • Loading branch information
soy0ka authored Jun 16, 2024
2 parents b2932f5 + 89a062e commit ed7da62
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// eslint.config.js
import { defineConfig } from 'eslint-define-config';
import reactPlugin from 'eslint-plugin-react';
import typescriptPlugin from '@typescript-eslint/eslint-plugin';
import prettierPlugin from 'eslint-plugin-prettier';
import typescriptParser from '@typescript-eslint/parser';
import typescriptPlugin from '@typescript-eslint/eslint-plugin'
import typescriptParser from '@typescript-eslint/parser'
import { defineConfig } from 'eslint-define-config'
import prettierPlugin from 'eslint-plugin-prettier'
import reactPlugin from 'eslint-plugin-react'

export default defineConfig([
{
files: ["src/**/*.{js,jsx,ts,tsx}"],
files: ['src/**/*.{js,jsx,ts,tsx}'],
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
Expand All @@ -23,7 +23,7 @@ export default defineConfig([
},
settings: {
react: {
version: "detect", // React 버전 자동 감지
version: 'detect', // React 버전 자동 감지
},
},
rules: {
Expand All @@ -35,7 +35,7 @@ export default defineConfig([
},
},
{
files: ["src/**/*.{ts,tsx}"],
files: ['src/**/*.{ts,tsx}'],
languageOptions: {
parser: typescriptParser,
},
Expand All @@ -44,4 +44,4 @@ export default defineConfig([
'@typescript-eslint/no-explicit-any': 'warn',
},
},
]);
])
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
},
"dependencies": {
"@ctrl/react-adsense": "^1.6.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.10.15",
"@mui/lab": "^5.0.0-alpha.115",
"@mui/material": "^5.11.5",
"@mui/material": "^5.15.20",
"@pkmn/dex": "^0.7.21",
"@sentry/react": "^7.33.0",
"@sentry/tracing": "^7.33.0",
Expand Down
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ __metadata:
languageName: node
linkType: hard

"@emotion/react@npm:^11.10.5":
"@emotion/react@npm:^11.11.4":
version: 11.11.4
resolution: "@emotion/react@npm:11.11.4"
dependencies:
Expand Down Expand Up @@ -449,7 +449,7 @@ __metadata:
languageName: node
linkType: hard

"@emotion/styled@npm:^11.10.5":
"@emotion/styled@npm:^11.11.5":
version: 11.11.5
resolution: "@emotion/styled@npm:11.11.5"
dependencies:
Expand Down Expand Up @@ -1925,7 +1925,7 @@ __metadata:
languageName: node
linkType: hard

"@mui/material@npm:^5.11.5":
"@mui/material@npm:^5.15.20":
version: 5.15.20
resolution: "@mui/material@npm:5.15.20"
dependencies:
Expand Down Expand Up @@ -6648,11 +6648,11 @@ __metadata:
resolution: "pokegg-frontend@workspace:."
dependencies:
"@ctrl/react-adsense": ^1.6.1
"@emotion/react": ^11.10.5
"@emotion/styled": ^11.10.5
"@emotion/react": ^11.11.4
"@emotion/styled": ^11.11.5
"@mui/icons-material": ^5.10.15
"@mui/lab": ^5.0.0-alpha.115
"@mui/material": ^5.11.5
"@mui/material": ^5.15.20
"@pkmn/dex": ^0.7.21
"@sentry/react": ^7.33.0
"@sentry/tracing": ^7.33.0
Expand Down

0 comments on commit ed7da62

Please sign in to comment.