chore: add cucumber.js to list of files to lint and /docs to .gitignore (#327)

Signed-off-by: Lance Ball <lball@redhat.com>
This commit is contained in:
Lance Ball 2020-08-25 16:38:17 -04:00 committed by GitHub
parent 73f0becc2b
commit 17d4bc85df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -12,6 +12,7 @@ index.js
/browser
/bundles
/dist
/docs
# Runtime data
pids

View File

@ -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",