Fix lint issues

This commit is contained in:
dapplion 2020-11-25 11:50:47 +00:00
parent 507ed94995
commit 6b1fdb0971
3 changed files with 4 additions and 1 deletions

View File

@ -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", {

1
.prettierignore Normal file
View File

@ -0,0 +1 @@
.eslintrc.js

View File

@ -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,