Skip to content

Commit

Permalink
Merge pull request #474 from mountain-pass/dependabot/npm_and_yarn/es…
Browse files Browse the repository at this point in the history
…lint-plugin-unicorn-35.0.0

build(deps-dev): bump eslint-plugin-unicorn from 26.0.1 to 35.0.0
  • Loading branch information
tompahoward authored Nov 15, 2021
2 parents d2f801e + a80e43b commit e65b163
Show file tree
Hide file tree
Showing 25 changed files with 38,172 additions and 198 deletions.
16 changes: 13 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,14 @@
"istanbul/prefer-ignore-reason": "error",
"promise/no-callback-in-promise": "off",
"security/detect-object-injection": "off",
"unicorn/no-array-reduce": "off"
"unicorn/no-array-reduce": "off",
"unicorn/explicit-length-check": [
"error",
{
"non-zero": "not-equal"
}
],
"unicorn/prefer-node-protocol": "off"
},
"overrides": [
{
Expand Down Expand Up @@ -76,7 +83,9 @@
"security/detect-non-literal-fs-filename": "off",
"jsdoc/require-jsdoc": "off",
"security/detect-object-injection": "off",
"unicorn/no-array-callback-reference": "off"
"unicorn/no-array-callback-reference": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-module": "off"
}
},
{
Expand Down Expand Up @@ -115,7 +124,8 @@
"unicorn/prefer-optional-catch-binding": "off",
"spaced-comment": "off",
"no-unused-expressions": "off",
"unicorn/no-array-callback-reference": "off"
"unicorn/no-array-callback-reference": "off",
"unicorn/prefer-module": "off"
}
}
]
Expand Down
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// eslint-disable-next-line unicorn/prefer-module
module.exports = {
extends: ['@commitlint/config-conventional']
}
1 change: 1 addition & 0 deletions cucumber.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* eslint-disable security/detect-non-literal-fs-filename */
// eslint-disable-next-line unicorn/prefer-module
const fs = require('fs')

/* istanbul ignore next: Second branch only happens when not running a CI job */
Expand Down
Loading

0 comments on commit e65b163

Please sign in to comment.