Fix lint issues
This commit is contained in:
parent
507ed94995
commit
6b1fdb0971
|
@ -55,7 +55,7 @@ module.exports = {
|
||||||
"import/no-extraneous-dependencies": ["error", {
|
"import/no-extraneous-dependencies": ["error", {
|
||||||
"devDependencies": false,
|
"devDependencies": false,
|
||||||
"optionalDependencies": false,
|
"optionalDependencies": false,
|
||||||
"peerDependencies": false
|
"peerDependencies": true
|
||||||
}],
|
}],
|
||||||
"func-call-spacing": "off",
|
"func-call-spacing": "off",
|
||||||
"max-len": ["error", {
|
"max-len": ["error", {
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
.eslintrc.js
|
|
@ -1,6 +1,8 @@
|
||||||
import assert from "assert";
|
import assert from "assert";
|
||||||
import {IBls} from "./interface";
|
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({
|
export function functionalInterfaceFactory({
|
||||||
PrivateKey,
|
PrivateKey,
|
||||||
PublicKey,
|
PublicKey,
|
||||||
|
|
Reference in New Issue