Skip to content

Commit

Permalink
Merge pull request #104 from 5app/npm-update
Browse files Browse the repository at this point in the history
chore(deps): update eslint rules
  • Loading branch information
MrSwitch committed Sep 28, 2021
2 parents 2666b71 + 2a10576 commit 63fc416
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 16 deletions.
19 changes: 7 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,19 @@
"@semantic-release/git": "^10.0.0",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"csv-parse": "^4.4.3",
"dotenv": "^10.0.0",
"eslint": "^7.0.0",
"eslint-config-5app": "^0.15.0",
"eslint-config-5app": "^0.16.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"mocha": "^9.0.0",
"mockery": "^2.1.0",
"nyc": "15.1.0",
"pre-commit": "^1.2.2",
"semantic-release": "^18.0.0",
"csv-parse": "^4.4.3",
"dotenv": "^10.0.0",
"validator": "^13.0.0",
"yamljs": "^0.3.0"

},
"release": {
"branches": [
Expand Down
1 change: 1 addition & 0 deletions samples/bulk-upload/bulk-upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,7 @@ function formatValue(value) {
// Format Time
// 00:00:00
function formatTime(value) {
// eslint-disable-next-line max-params
return value.replace(/^([\d]{2}):([\d]{2}):([\d]{2})$/, (patt, h, m, s) => ((((+h * 60) + +m) * 60) + +s) / 60)
}

Expand Down

0 comments on commit 63fc416

Please sign in to comment.