* revamp crypto lib * reworkign ucan capabilities * fixing up auth lib * migrating to monorepo * got jest working with esm * tests & fixed CID parsing * common tests up to date * ported did-sdk * cli + did:web hanging fix * ported server * poted example app * working on server build * server build working * integrating dev-env * patched up frontend scripts * patching up cli & dev env build script * docs & readme * fixing up package.jsons * wiped out unneeded dev deps
24 lines
805 B
Plaintext
24 lines
805 B
Plaintext
{
|
|
"root": true,
|
|
// parse TypeScript files
|
|
// https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/parser
|
|
"parser": "@typescript-eslint/parser",
|
|
// configure eslint using options described at
|
|
// https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin
|
|
"plugins": ["@typescript-eslint"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:prettier/recommended",
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"no-var": "error",
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
"@typescript-eslint/no-empty-interface": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
"@typescript-eslint/no-empty-function": "off"
|
|
}
|
|
}
|