Skip to content

Commit

Permalink
fix(*): update eslint to bypass errors
Browse files Browse the repository at this point in the history
  • Loading branch information
HoseaCodes committed Feb 11, 2024
1 parent f9d386a commit d7d6417
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{
"env": {
"browser": true
"rules": {
"padded-blocks": "off"
},
"extends": ["airbnb-base", "eslint:recommended", "plugin:react/recommended"]
}
// "extends": ["airbnb-base", "eslint:recommended", "plugin:react/recommended"]
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
}

0 comments on commit d7d6417

Please sign in to comment.