Skip to content

Commit

Permalink
[fix] ts파일 첫째줄에서 빨간줄 에러 fix
Browse files Browse the repository at this point in the history
Co-authored-by: bbanderson <[email protected]>
Co-authored-by: Madang Garden <[email protected]>
  • Loading branch information
3 people committed Jul 26, 2024
1 parent b38016a commit 6a07485
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/analysis-engine/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "simple-import-sort"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "@typescript-eslint/parser", "prettier"],
"rules": {
"no-unused-vars": "off",
"no-console": "off",
Expand Down
7 changes: 6 additions & 1 deletion packages/vscode/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@
"parserOptions": {
"project": ["./tsconfig.json"]
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"@typescript-eslint/parser"
],
"rules": {
"no-empty": "warn",
"@typescript-eslint/no-unused-vars": "warn",
Expand Down

0 comments on commit 6a07485

Please sign in to comment.