Skip to content

Commit

Permalink
🧧Init (eslint)
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-furkqn committed Oct 16, 2020
1 parent 1b4f807 commit 33df736
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = {
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"react/react-in-jsx-scope": "off"
}
};

0 comments on commit 33df736

Please sign in to comment.