forked from Mozartted/ethr-did
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adapt to latest did core spec and libs (uport-project#61)
* chore(deps): update deps * feat: adapt to latest did core spec BREAKING CHANGE: new did core spec uses different format for DID documents and resolution. BREAKING CHANGE: Now using ethers.js which means that providers and signers may have a different API BREAKING CHANGE: default export was removed closes uport-project#50 closes uport-project#59 closes uport-project#21 closes uport-project#49 closes uport-project#51 closes uport-project#52 closes uport-project#57 closes uport-project#58
- Loading branch information
Showing
11 changed files
with
8,138 additions
and
11,361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module.exports = { | ||
parser: '@typescript-eslint/parser', // Specifies the ESLint parser | ||
extends: [ | ||
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin | ||
'prettier', | ||
], | ||
parserOptions: { | ||
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features | ||
sourceType: 'module', // Allows for the use of imports | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"jsxBracketSameLine": false, | ||
"trailingComma": "none", | ||
"tabWidth": 2, | ||
"printWidth": 80, | ||
"printWidth": 120, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"semi": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.