Skip to content

Commit

Permalink
fix: update rollup deps to latest packages
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdor committed Oct 20, 2021
1 parent aa2c3c2 commit 9d73208
Show file tree
Hide file tree
Showing 5 changed files with 9,784 additions and 19,104 deletions.
12 changes: 7 additions & 5 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-jsx",
["@babel/plugin-transform-react-jsx",
{
"pragma": "MotorCortex.utils.createDOMElement"
}]
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "MotorCortex.utils.createDOMElement"
}
]
]
}
}
35 changes: 26 additions & 9 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@

{
"parser": "babel-eslint",
"extends": ["eslint:recommended", "prettier"],
"plugins": ["babel", "prettier"],
"parser": "@babel/eslint-parser",
"extends": [
"eslint:recommended",
"prettier"
],
"plugins": [
"babel",
"prettier"
],
"env": {
"browser": true,
"node": true
Expand All @@ -20,13 +25,25 @@
"sinon": true
},
"rules": {
"prettier/prettier": ["error"],
"linebreak-style": ["error", "unix"],
"semi": ["error", "always"],
"prettier/prettier": [
"error"
],
"linebreak-style": [
"error",
"unix"
],
"semi": [
"error",
"always"
],
"no-console": [
"error",
{
"allow": ["warn", "error", "info"]
"allow": [
"warn",
"error",
"info"
]
}
],
"prefer-promise-reject-errors": "error",
Expand All @@ -40,4 +57,4 @@
"no-var": "error",
"no-unused-vars": "error"
}
}
}
Loading

0 comments on commit 9d73208

Please sign in to comment.