Integrate nodelinter into n8n (#2071)

This commit is contained in:
Iván Ovejero 2021-08-12 10:33:48 +02:00 committed by GitHub
parent 5ad9a29fa4
commit 92f98d4bcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View file

@ -14,3 +14,4 @@ _START_PACKAGE
.idea .idea
.prettierrc.js .prettierrc.js
vetur.config.js vetur.config.js
nodelinter.config.js

View file

@ -19,6 +19,7 @@
"build": "tsc && gulp", "build": "tsc && gulp",
"tslint": "tslint -p tsconfig.json -c tslint.json", "tslint": "tslint -p tsconfig.json -c tslint.json",
"tslintfix": "tslint --fix -p tsconfig.json -c tslint.json", "tslintfix": "tslint --fix -p tsconfig.json -c tslint.json",
"nodelinter": "nodelinter",
"watch": "tsc --watch", "watch": "tsc --watch",
"test": "jest" "test": "jest"
}, },
@ -634,6 +635,7 @@
"gulp": "^4.0.0", "gulp": "^4.0.0",
"jest": "^26.4.2", "jest": "^26.4.2",
"n8n-workflow": "~0.64.0", "n8n-workflow": "~0.64.0",
"nodelinter": "^0.1.9",
"ts-jest": "^26.3.0", "ts-jest": "^26.3.0",
"tslint": "^6.1.2", "tslint": "^6.1.2",
"typescript": "~3.9.7" "typescript": "~3.9.7"