Skip to content

Commit

Permalink
feat(deps): bump eslint from 8.12.0 to 8.14.0 (#1081)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump eslint from 8.12.0 to 8.14.0

Bumps [eslint](https://github.com/eslint/eslint) from 8.12.0 to 8.14.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.12.0...v8.14.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* feat(core): enable `no-constant-binary-expression` rule

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Masafumi Koba <473530+ybiquitous@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and ybiquitous authored May 2, 2022
1 parent fd5a598 commit fc8ad27
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@eslint/eslintrc": "^1.2.2",
"@tsconfig/node12": "^1.0.9",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"eslint": "^8.12.0",
"eslint": "^8.14.0",
"eslint-find-rules": "^4.1.0",
"eslint-plugin-jest": "^26.1.5",
"jest": "^28.0.3",
Expand All @@ -46,7 +46,7 @@
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=5.13.0",
"eslint": ">=8.6.0"
"eslint": ">=8.14.0"
},
"peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": {
Expand Down
1 change: 1 addition & 0 deletions rules/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ module.exports = {
"no-bitwise": "error",
"no-caller": "error",
"no-console": ["error", { allow: ["warn", "error"] }],
"no-constant-binary-expression": "error",
"no-constructor-return": "error",
"no-continue": "error",
"no-div-regex": "off",
Expand Down
2 changes: 0 additions & 2 deletions test/e2e.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ const writeLintTargetFile = (content) => writeFileSync("test.js", `${content}${E
const npmrc = `
progress=false
loglevel=warn
cache-max=0
cache-min=9999
`;

let tarballPath;
Expand Down

0 comments on commit fc8ad27

Please sign in to comment.