@proyecto-didi/didi-blockchain-manager
Version:
Project to abstract the use of multiblockains in DIDI project
36 lines • 924 B
JSON
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"jest": true
},
"extends": [
"airbnb-base",
"prettier",
"plugin:prettier/recommended",
"plugin:jest/all"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"import/prefer-default-export": "off",
"import/extensions": "off",
"import/no-unresolved": "off",
"import/first": "off",
"class-methods-use-this": "warn",
"no-use-before-define": "warn",
"no-return-assign": "warn",
"jest/no-conditional-expect": "off",
"jest/require-hook": "warn",
"jest/no-disabled-tests": "warn",
"jest/no-test-return-statement": "warn",
"no-param-reassign": "warn"
}
}