From 17d4bc85dfa9b8ecfcc3383c6154ed9aa2f37496 Mon Sep 17 00:00:00 2001 From: Lance Ball Date: Tue, 25 Aug 2020 16:38:17 -0400 Subject: [PATCH] chore: add cucumber.js to list of files to lint and /docs to .gitignore (#327) Signed-off-by: Lance Ball --- .gitignore | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8fa1cf2..1a0ce74 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 d66901a..0562f89 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",