Skip to content

Commit a79b2cb

Browse files
Merge pull request #231 from dev-protocol/update-executed-span2
Update executed span
2 parents c5fcc55 + 87b48f8 commit a79b2cb

File tree

20 files changed

+24
-28
lines changed

20 files changed

+24
-28
lines changed

.eslintrc.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,7 @@
66
"tsconfigRootDir": "."
77
},
88
"plugins": ["@typescript-eslint", "prettier", "jest"],
9-
"extends": [
10-
"xo",
11-
"xo-typescript",
12-
"plugin:prettier/recommended",
13-
"prettier/@typescript-eslint"
14-
],
9+
"extends": ["xo", "xo-typescript", "plugin:prettier/recommended", "prettier"],
1510
"rules": {
1611
"prettier/prettier": "error",
1712
"@typescript-eslint/prefer-readonly-parameter-types": "off",

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npm run lint

account-lockup/function.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "myTimer",
66
"type": "timerTrigger",
77
"direction": "in",
8-
"schedule": "0 */1 * * * *"
8+
"schedule": "0 */3 * * * *"
99
}
1010
]
1111
}

dev-property-transfer/function.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "myTimer",
66
"type": "timerTrigger",
77
"direction": "in",
8-
"schedule": "0 */1 * * * *"
8+
"schedule": "0 */3 * * * *"
99
}
1010
]
1111
}

lockup-lockedup/function.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "myTimer",
66
"type": "timerTrigger",
77
"direction": "in",
8-
"schedule": "0 */1 * * * *"
8+
"schedule": "0 */3 * * * *"
99
}
1010
]
1111
}

market-factory-create/function.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "myTimer",
66
"type": "timerTrigger",
77
"direction": "in",
8-
"schedule": "0 */1 * * * *"
8+
"schedule": "0 */3 * * * *"
99
}
1010
]
1111
}

metrics-factory-create/function.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "myTimer",
66
"type": "timerTrigger",
77
"direction": "in",
8-
"schedule": "0 */1 * * * *"
8+
"schedule": "0 */3 * * * *"
99
}
1010
]
1111
}

metrics-factory-destroy/function.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "myTimer",
66
"type": "timerTrigger",
77
"direction": "in",
8-
"schedule": "0 */1 * * * *"
8+
"schedule": "0 */3 * * * *"
99
}
1010
]
1111
}

package.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"test": "npm run build && jest --runInBand --testTimeout=50000",
1515
"lint": "npm run lint:eslint && npm run lint:format",
1616
"lint:eslint": "eslint . --ext .ts --fix",
17-
"lint:format": "prettier --write '**/*.{json,md,yml}'"
17+
"lint:format": "prettier --write '**/*.{json,md,yml}'",
18+
"prepare": "husky install"
1819
},
1920
"jest": {
2021
"moduleFileExtensions": [
@@ -37,11 +38,6 @@
3738
"**/test/main/**/*.ts"
3839
]
3940
},
40-
"husky": {
41-
"hooks": {
42-
"pre-commit": "npm run lint"
43-
}
44-
},
4541
"dependencies": {
4642
"@types/pg": "7.14.11",
4743
"bignumber.js": "9.0.1",

0 commit comments

Comments
 (0)