Skip to content

Commit dc353ee

Browse files
committed
chore: update lint rules
1 parent 38819a5 commit dc353ee

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: .eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ module.exports = {
193193
],
194194
},
195195
],
196-
196+
'import/no-extraneous-dependencies': ['error', { 'devDependencies': true }],
197197
/**
198198
* ES6-specific Issues
199199
* (http://eslint.org/docs/rules/#ecmascript-6)

Diff for: test/transaction/test_cryptoconditions.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ test('Fulfillment correctly formed', t => {
9292
const msgHash = sha256Hash(msgUniqueFulfillment)
9393

9494
t.truthy(validateFulfillment(
95-
txSigned.inputs[0].fulfillment, txCreate.outputs[0].condition.uri,
95+
txSigned.inputs[0].fulfillment,
96+
txCreate.outputs[0].condition.uri,
9697
Buffer.from(msgHash, 'hex')
9798
))
9899
})

0 commit comments

Comments
 (0)