From 79aee9dfb460a181497577fafb34c22c8fe5d21b Mon Sep 17 00:00:00 2001 From: Benedikt Magnus <magnus@magnuscraft.de> Date: Mon, 17 Oct 2022 18:52:51 +0200 Subject: [PATCH] Fixed typo in NPM scripts for linting. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e7f2671..23b8b65 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,8 @@ "coverage:coveralls": "nyc --reporter=lcov npm run test", "coverage:text": "nyc --reporter=text npm run test", "lint": "npm run lint:scripts && npm run lint:tests", - "lint:scripts": "cd scripts && .eslint .", - "lint:tests": "cd tests && .eslint .", + "lint:scripts": "cd scripts && eslint .", + "lint:tests": "cd tests && eslint .", "prepack": "npm run clean && npm run build:release", "start": "node build/main.js", "test": "mocha -r ts-node/register/transpile-only -t 12000 'tests/**/*.ts'" -- GitLab