Skip to content

Commit

Permalink
bypass unused param (#87)
Browse files Browse the repository at this point in the history
* bypass unused param

* eslint error fix

* fix: move to new rollup plugin

---------

Co-authored-by: Alexandros Dorodoulis <aldor94@gmail.com>
  • Loading branch information
andreas-trad and alexdor authored Nov 28, 2023
1 parent f129780 commit 54007af
Show file tree
Hide file tree
Showing 6 changed files with 675 additions and 7,054 deletions.
13 changes: 11 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
{
"parser": "@babel/eslint-parser",
"parserOptions": {
"babelOptions": {
"presets": ["@babel/preset-react"]
}
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"prettier"
],
"plugins": [
"babel",
"prettier"
"prettier",
"react"
],
"env": {
"browser": true,
Expand Down Expand Up @@ -55,6 +62,8 @@
}
],
"no-var": "error",
"no-unused-vars": "error"
"no-unused-vars": "error",
"react/react-in-jsx-scope": "off",
"react/jsx-uses-react": "off"
}
}
Loading

0 comments on commit 54007af

Please sign in to comment.