Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 242712f

Browse files
committed
fix: lint fixes
1 parent 54ec118 commit 242712f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/components/pin/pin-manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ class PinManager {
195195
cb => this.pinset.loadSet(pinRoot.value, PinTypes.direct, cb)
196196
], (err, keys) => {
197197
if (err) { return callback(err) }
198-
const [ rKeys, dKeys ] = keys
198+
const [rKeys, dKeys] = keys
199199

200200
this.directPins = new Set(dKeys.map(toB58String))
201201
this.recursivePins = new Set(rKeys.map(toB58String))

test/core/gc.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('gc', function () {
5858

5959
const factory = IPFSFactory.create({ type: 'proc', exec: IPFS })
6060

61-
let config = { Bootstrap: [] }
61+
const config = { Bootstrap: [] }
6262
if (env.isNode) {
6363
config.Addresses = {
6464
Swarm: ['/ip4/127.0.0.1/tcp/0']

0 commit comments

Comments
 (0)