From 3ba9550346a4b0220566c32c94751e4c1fc85771 Mon Sep 17 00:00:00 2001 From: Igor Savin Date: Fri, 6 Oct 2023 09:54:15 +0300 Subject: [PATCH] Fix linting script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index dd1888774..41d91c3be 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "debug:test": "mocha --inspect-brk --exit -t 0 test/all-tests-suite.js", "debug:tape": "node --inspect-brk test/tape/index.js", "coveralls": "nyc report --reporter=lcov", - "lint": "eslint --cache '**/*.js'", + "lint": "eslint --cache **/*.js", "lint:fix": "eslint --cache --fix '**/*.js'", "lint:types": "tsd && dtslint types", "lint:everything": "npm run lint && npm run lint:types",