Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus authored and devinrhode2 committed Oct 8, 2021
1 parent 9352bbf commit 392fba6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lib/options-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -546,11 +546,11 @@ const findApplicableOverrides = (path, overrides) => {
const applicable = [];

for (const override of overrides) {
hash <<= 1;
hash <<= 1; // eslint-disable-line no-bitwise

if (micromatch.isMatch(path, override.files)) {
applicable.push(override);
hash |= 1;
hash |= 1; // eslint-disable-line no-bitwise
}
}

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@
],
"dependencies": {
"@eslint/eslintrc": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"arrify": "^3.0.0",
"cosmiconfig": "^7.0.1",
"define-lazy-prop": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo": "^0.38.0",
"eslint-config-xo-typescript": "^0.44.0",
"eslint-config-xo": "^0.39.0",
"eslint-config-xo-typescript": "^0.45.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-ava": "^13.0.0",
Expand Down Expand Up @@ -96,13 +96,13 @@
"devDependencies": {
"ava": "^3.15.0",
"eslint-config-xo-react": "^0.25.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"execa": "^5.1.1",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"temp-write": "^5.0.0",
"webpack": "^5.54.0"
"webpack": "^5.56.0"
},
"eslintConfig": {
"extends": [
Expand Down

0 comments on commit 392fba6

Please sign in to comment.