Fix lint issues
This commit is contained in:
parent
507ed94995
commit
6b1fdb0971
|
@ -55,7 +55,7 @@ module.exports = {
|
|||
"import/no-extraneous-dependencies": ["error", {
|
||||
"devDependencies": false,
|
||||
"optionalDependencies": false,
|
||||
"peerDependencies": false
|
||||
"peerDependencies": true
|
||||
}],
|
||||
"func-call-spacing": "off",
|
||||
"max-len": ["error", {
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
.eslintrc.js
|
|
@ -1,6 +1,8 @@
|
|||
import assert from "assert";
|
||||
import {IBls} from "./interface";
|
||||
|
||||
// Returned type is enforced at each implementation's index
|
||||
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
|
||||
export function functionalInterfaceFactory({
|
||||
PrivateKey,
|
||||
PublicKey,
|
||||
|
|
Reference in New Issue