Skip to content

Commit

Permalink
edit prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
carolk-dev committed Oct 24, 2024
1 parent 06a6b7f commit 7b98353
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bridge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test:aws": "jest --config=./aws.jest.config.js",
"test:bridge": "jest --config=./bridge.jest.config.js",
"coverage": "jest --coverage --config=./bridge.jest.config.js",
"lint": "eslint src --ext .ts",
"lint": "prettier --check src test",
"build": "tsc",
"transfer": "node scripts/transfer-script.js transfer"
},
Expand Down
4 changes: 3 additions & 1 deletion bridge/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ process.on("uncaughtException", console.error);
const SLACK_WEB_TOKEN: string = Configuration.get("SLACK_WEB_TOKEN");
const FAILURE_SUBSCRIBERS: string = Configuration.get("FAILURE_SUBSCRIBERS");
const OPENSEARCH_ENDPOINT: string = Configuration.get("OPENSEARCH_ENDPOINT");
const OPENSEARCH_ENDPOINT_MIGRATION: string = Configuration.get("OPENSEARCH_ENDPOINT_MIGRATION");
const OPENSEARCH_ENDPOINT_MIGRATION: string = Configuration.get(
"OPENSEARCH_ENDPOINT_MIGRATION"
);
const OPENSEARCH_AUTH: string = Configuration.get("OPENSEARCH_AUTH");
const OPENSEARCH_INDEX: string =
Configuration.get("OPENSEARCH_INDEX", false) || "9c-eth-bridge";
Expand Down

0 comments on commit 7b98353

Please sign in to comment.