From 92f98d4bcc6cfa862059302f8338a0845b72a232 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Thu, 12 Aug 2021 10:33:48 +0200 Subject: [PATCH] :sparkles: Integrate nodelinter into n8n (#2071) --- .gitignore | 1 + packages/nodes-base/package.json | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index d457b50091..3b52a5d928 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ _START_PACKAGE .idea .prettierrc.js vetur.config.js +nodelinter.config.js diff --git a/packages/nodes-base/package.json b/packages/nodes-base/package.json index 96c0c96734..b06ef5cef0 100644 --- a/packages/nodes-base/package.json +++ b/packages/nodes-base/package.json @@ -19,6 +19,7 @@ "build": "tsc && gulp", "tslint": "tslint -p tsconfig.json -c tslint.json", "tslintfix": "tslint --fix -p tsconfig.json -c tslint.json", + "nodelinter": "nodelinter", "watch": "tsc --watch", "test": "jest" }, @@ -634,6 +635,7 @@ "gulp": "^4.0.0", "jest": "^26.4.2", "n8n-workflow": "~0.64.0", + "nodelinter": "^0.1.9", "ts-jest": "^26.3.0", "tslint": "^6.1.2", "typescript": "~3.9.7"