Fork of github.com/did-method-plc/did-method-plc
1{
2 "root": true,
3 // parse TypeScript files
4 // https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/parser
5 "parser": "@typescript-eslint/parser",
6 // configure eslint using options described at
7 // https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin
8 "plugins": ["@typescript-eslint"],
9 "extends": [
10 "eslint:recommended",
11 "plugin:@typescript-eslint/eslint-recommended",
12 "plugin:@typescript-eslint/recommended",
13 "plugin:prettier/recommended",
14 "prettier"
15 ],
16 "ignorePatterns":[
17 "dist",
18 "node_modules",
19 "jest.config.base.js",
20 "jest.bench.config.js",
21 "jest.config.js",
22 "babel.config.js",
23 "build.js",
24 "update-pkg.js"
25 ],
26 "rules": {
27 "no-var": "error",
28 "prefer-const": "warn",
29 "@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
30 "@typescript-eslint/ban-ts-comment": "off",
31 "@typescript-eslint/no-empty-interface": "off",
32 "@typescript-eslint/explicit-module-boundary-types": "off",
33 "@typescript-eslint/no-empty-function": "off"
34 }
35}