Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
domchristie committed Sep 20, 2023
1 parent 3e49d80 commit a9579dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = {
"no-multiple-empty-lines": ["error", { "max": 2 }],
"no-self-assign": ["error", { "props": false }],
"no-trailing-spaces": ["error"],
"no-unused-vars": ["error", { argsIgnorePattern: "_*" }],
"no-unused-vars": ["error", { argsIgnorePattern: "_*" , "ignoreRestSiblings": true}],
"no-useless-escape": "off",
"no-var": ["error"],
"prefer-const": ["error"],
Expand Down
2 changes: 1 addition & 1 deletion src/core/drive/navigator.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class Navigator {
this.currentVisit = new Visit(this, expandURL(locatable), restorationIdentifier, {
referrer: this.location,
...this.currentVisitOptions,
...options,
...options
})
this.currentVisit.start()
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/drive/visit.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class Visit {
updateHistory,
shouldCacheSnapshot,
acceptsStreamResponse,
initiator,
initiator
} = {
...defaultOptions,
...options
Expand Down

0 comments on commit a9579dc

Please sign in to comment.