Skip to content

Commit

Permalink
fix: fix account subscribe limit error when loading trust nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
lanhaoxiang committed May 15, 2020
1 parent 17cab6c commit 0a7d0dd
Show file tree
Hide file tree
Showing 4 changed files with 240 additions and 182 deletions.
52 changes: 25 additions & 27 deletions .eslintrc
@@ -1,30 +1,28 @@
{
"plugins": [
"react", "json"
],
"extends": ["plugin:react/recommended"],
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaFeatures": {
"blockBindings": true,
"forOf": true,
"jsx": true
}
},
"rules": {
"no-unused-vars": ["error", { "vars": "all", "args": "after-used" }],
"comma-dangle": 0,
"indent": ["error", 4, {SwitchCase: 1}],
"quotes": [2, "double", "avoid-escape"],
"semi": [2, "always"],
"camelcase": [0],
"no-console": [0],
"object-curly-spacing": [0],
"react/prop-types": [0]
"plugins": ["react", "json"],
"extends": ["plugin:react/recommended"],
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaFeatures": {
"blockBindings": true,
"forOf": true,
"jsx": true
}
},
"rules": {
"no-unused-vars": ["error", { "vars": "all", "args": "after-used" }],
"comma-dangle": 0,
"indent": ["error", 4, { "SwitchCase": 1 }],
"quotes": [2, "double", "avoid-escape"],
"semi": [2, "always"],
"camelcase": [0],
"no-console": [0],
"object-curly-spacing": [0],
"react/prop-types": [0]
}
}
2 changes: 2 additions & 0 deletions .vscode/settings.json
@@ -0,0 +1,2 @@
{
}

0 comments on commit 0a7d0dd

Please sign in to comment.