Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Joffcom committed Dec 21, 2022
1 parent 8841dce commit 5d6fde0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions nodes/BaserowTrigger/BaserowTrigger.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class BaserowTrigger implements INodeType {
return toOptions(tables);
},
},
}
};

// @ts-ignore (because of request)
webhookMethods = {
Expand Down Expand Up @@ -159,8 +159,8 @@ export class BaserowTrigger implements INodeType {
events,
"request_method": "POST",
"name": `${this.getWorkflow().name}`,
"use_user_field_names": true
}
"use_user_field_names": true,
};

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

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "tslint -p tsconfig.json -c tslint.json && eslint nodes credentials package.json",
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
"format": "prettier nodes --write",
"lint": "tslint -p tsconfig.json -c tslint.json && eslint nodes package.json",
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && eslint nodes package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes package.json"
},
"files": [
"dist"
Expand Down

0 comments on commit 5d6fde0

Please sign in to comment.