Skip to content

Commit

Permalink
Merge pull request #56 from LIKELION-SOGANG/chore/eslint-force-import#55
Browse files Browse the repository at this point in the history
ESLINT 설정 및 .vscode 폴더 세팅
  • Loading branch information
rmdnps10 authored Oct 11, 2024
2 parents ca861d6 + c4ffa78 commit bea2c94
Show file tree
Hide file tree
Showing 22 changed files with 460 additions and 117 deletions.
15 changes: 13 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
{
"extends": ["next/core-web-vitals", "prettier"],
"rules": { "react/no-unescaped-entities": 0 }
"plugins": ["unused-imports"],
"parser": "@typescript-eslint/parser",
"extends": [
"next/core-web-vitals",
"prettier",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"react/no-unescaped-entities": 0,
"@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports": "error"
}
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.formatOnSave": true
}
Loading

0 comments on commit bea2c94

Please sign in to comment.