mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
⬆️ Set identical tslint version in all packages and fix lint
issues
This commit is contained in:
parent
a17a376d13
commit
cc3f2c42d1
|
@ -53,7 +53,7 @@
|
|||
"nodemon": "^1.19.1",
|
||||
"sails-disk": "^1.0.1",
|
||||
"ts-jest": "^23.10.1",
|
||||
"tslint": "^5.11.0",
|
||||
"tslint": "^5.17.0",
|
||||
"typescript": "~3.5.2"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
"jest": "^23.6.0",
|
||||
"source-map-support": "^0.5.9",
|
||||
"ts-jest": "^23.10.1",
|
||||
"tslint": "^5.11.0",
|
||||
"tslint": "^5.17.0",
|
||||
"typescript": "~3.5.2"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
|
@ -151,7 +151,7 @@ export default mixins(
|
|||
saveDataSuccessExecutionOptions: [] as Array<{ key: string, value: string }>,
|
||||
saveManualOptions: [] as Array<{ key: string | boolean, value: string }>,
|
||||
timezones: [] as Array<{ key: string, value: string }>,
|
||||
workflowSettings: {},
|
||||
workflowSettings: {} as IWorkflowSettings,
|
||||
workflows: [] as IWorkflowShortResponse[],
|
||||
};
|
||||
},
|
||||
|
@ -171,7 +171,7 @@ export default mixins(
|
|||
},
|
||||
async loadSaveDataErrorExecutionOptions () {
|
||||
this.saveDataErrorExecutionOptions.length = 0;
|
||||
this.saveDataErrorExecutionOptions.push.apply(
|
||||
this.saveDataErrorExecutionOptions.push.apply( // eslint-disable-line no-useless-call
|
||||
this.saveDataErrorExecutionOptions, [
|
||||
{
|
||||
key: 'DEFAULT',
|
||||
|
@ -184,13 +184,13 @@ export default mixins(
|
|||
{
|
||||
key: 'none',
|
||||
value: 'Do not save',
|
||||
}
|
||||
},
|
||||
]
|
||||
);
|
||||
},
|
||||
async loadSaveDataSuccessExecutionOptions () {
|
||||
this.saveDataSuccessExecutionOptions.length = 0;
|
||||
this.saveDataSuccessExecutionOptions.push.apply(
|
||||
this.saveDataSuccessExecutionOptions.push.apply( // eslint-disable-line no-useless-call
|
||||
this.saveDataSuccessExecutionOptions, [
|
||||
{
|
||||
key: 'DEFAULT',
|
||||
|
@ -203,7 +203,7 @@ export default mixins(
|
|||
{
|
||||
key: 'none',
|
||||
value: 'Do not save',
|
||||
}
|
||||
},
|
||||
]
|
||||
);
|
||||
},
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
"@types/inquirer": "^6.0.3",
|
||||
"@types/node": "^10.10.1",
|
||||
"@types/vorpal": "^1.11.0",
|
||||
"tslint": "^5.11.0"
|
||||
"tslint": "^5.17.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"change-case": "^3.1.0",
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
"n8n-core": "^0.1.0",
|
||||
"n8n-workflow": "^0.1.0",
|
||||
"ts-jest": "^23.10.1",
|
||||
"tslint": "^5.11.0",
|
||||
"tslint": "^5.17.0",
|
||||
"typescript": "~3.5.2"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
"@types/node": "^10.10.1",
|
||||
"jest": "^23.6.0",
|
||||
"ts-jest": "^23.10.1",
|
||||
"tslint": "^5.11.0",
|
||||
"tslint": "^5.17.0",
|
||||
"typescript": "~3.5.2"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
Loading…
Reference in a new issue