Skip to content

Commit

Permalink
BE-711 Update code quality config
Browse files Browse the repository at this point in the history
Signed-off-by: nfrunza <[email protected]>
  • Loading branch information
nfrunza committed Dec 4, 2019
1 parent d9bc847 commit 8546801
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
5 changes: 5 additions & 0 deletions app/platform/fabric/Platform.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,11 @@ class Platform {
/* eslint-disable */
for (const [network_name, clients] of this.networks.entries()) {
for (const [client_name, client] of clients.entries()) {
console.log(
'initializeListener, client_name, client ',
client_name,
client.client_config
);
if (this.getClient(network_name, client_name).getStatus()) {
const explorerListener = new ExplorerListener(this, syncconfig);
explorerListener.initialize([network_name, client_name, '1']);
Expand Down
15 changes: 5 additions & 10 deletions lgtm.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
# SPDX-License-Identifier: Apache-2.0


path_classifiers:
queries:
exclude: "js/unused-local-variable"
extraction:
javascript:
index:
filters:
- exclude: "app/platform/fabric/e2e-test/fabric-samples/balance-transfer/app.js"
- exclude: "app/platform/fabric/e2e-test/fabric-samples/balance-transfer/typescript/app.ts"
- exclude: "app/rest/authroutes.js"
- exclude: "app/rest/requestutils.js"
- exclude: "app/platform/fabric/Platform.js"
- exclude: "app/platform/fabric/e2e-test/sdk/node/query.js"
- exclude: "client/src/state/redux/auth/operations.js"
queries:
exclude: js/unused-local-variable
exclude: "app/platform/fabric/e2e-test"

0 comments on commit 8546801

Please sign in to comment.