Skip to content

Commit

Permalink
chore(deps): npm audit fix, eslint upgrade, 2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mrodrig authored Jan 26, 2022
1 parent e6c4ddf commit b741b5d
Show file tree
Hide file tree
Showing 3 changed files with 1,399 additions and 1,710 deletions.
9 changes: 5 additions & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
"mocha": true // ignore mocha globals (describe, it)
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
"ecmaVersion": 8,
"sourceType": "module",
"requireConfigFile": false
},
"rules": {
//Overrides "eslint:recommended"
"no-console": ["error", { allow: ["warn", "error"] }], // allow use of console.warn and console.error
"no-console": ["error", { "allow": ["warn", "error"] }], // allow use of console.warn and console.error

//Add the rules associated with --fix not covered by "eslint:recommended" so we highlight them
//during pre-test script
Expand Down
Loading

0 comments on commit b741b5d

Please sign in to comment.