Skip to content

Commit 5d6fde0

Browse files
committed
lint fixes
1 parent 8841dce commit 5d6fde0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

nodes/BaserowTrigger/BaserowTrigger.node.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export class BaserowTrigger implements INodeType {
116116
return toOptions(tables);
117117
},
118118
},
119-
}
119+
};
120120

121121
// @ts-ignore (because of request)
122122
webhookMethods = {
@@ -159,8 +159,8 @@ export class BaserowTrigger implements INodeType {
159159
events,
160160
"request_method": "POST",
161161
"name": `${this.getWorkflow().name}`,
162-
"use_user_field_names": true
163-
}
162+
"use_user_field_names": true,
163+
};
164164

165165
const webhookData = this.getWorkflowStaticData('node');
166166

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
"scripts": {
2222
"build": "tsc && gulp build:icons",
2323
"dev": "tsc --watch",
24-
"format": "prettier nodes credentials --write",
25-
"lint": "tslint -p tsconfig.json -c tslint.json && eslint nodes credentials package.json",
26-
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && eslint nodes credentials package.json --fix",
27-
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
24+
"format": "prettier nodes --write",
25+
"lint": "tslint -p tsconfig.json -c tslint.json && eslint nodes package.json",
26+
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && eslint nodes package.json --fix",
27+
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes package.json"
2828
},
2929
"files": [
3030
"dist"

0 commit comments

Comments
 (0)