From 9c7c3ba6828d338158681fa15f6b1c1c62091068 Mon Sep 17 00:00:00 2001 From: Lance Ball Date: Tue, 25 Aug 2020 14:54:17 -0400 Subject: [PATCH] chore: add cucumber.js to list of files to lint and /docs to .gitignore Signed-off-by: Lance Ball --- .gitignore | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8fa1cf23..1a0ce74e 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ index.js /browser /bundles /dist +/docs # Runtime data pids diff --git a/package.json b/package.json index d66901a0..0562f89f 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "watch": "tsc --project tsconfig.json --watch", "build": "tsc --project tsconfig.json && tsc --project tsconfig.browser.json && webpack", - "lint": "eslint 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'", + "lint": "eslint 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' cucumber.js", "lint:fix": "eslint 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' --fix", "pretest": "npm run lint && npm run conformance", "test": "mocha --require ts-node/register ./test/integration/**/*.ts",