Skip to content

Commit

Permalink
Merge pull request #7 from hyeri-woo/main
Browse files Browse the repository at this point in the history
📦Chore: eslint 설정 변경
  • Loading branch information
hyeri-woo authored Jun 8, 2023
2 parents b65ab1c + 446d7e4 commit 109fb3b
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
{
"env": {
"browser": true,
"es2021": true
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:prettier/recommended"
],
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react"
],
"plugins": ["react", "prettier"],
"rules": {
"prettier/prettier": "error",
"react/react-in-jsx-scope": "off",
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"no-extra-semi": "error",
"no-tabs": ["error", { "allowIndentationTabs": true }]
}
}
}

0 comments on commit 109fb3b

Please sign in to comment.