From c395779f499cca0ec7f915342c23b2d2381b0163 Mon Sep 17 00:00:00 2001 From: James Sumners Date: Tue, 20 Aug 2024 10:38:33 -0400 Subject: [PATCH] chore: Fixed linting scripts (#2497) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 198b6d713d..f003bb5709 100644 --- a/package.json +++ b/package.json @@ -164,8 +164,8 @@ "integration": "npm run prepare-test && npm run sub-install && time c8 -o ./coverage/integration borp --timeout 600000 --reporter ./test/lib/test-reporter.mjs 'test/integration/**/*.tap.js'", "integration:esm": "NODE_OPTIONS='--loader=./esm-loader.mjs' time c8 -o ./coverage/integration-esm borp --reporter ./test/lib/test-reporter.mjs 'test/integration/**/*.tap.mjs'", "prepare-test": "npm run ssl && npm run docker-env", - "lint": "eslint ./*.{js,mjs} lib test bin examples", - "lint:fix": "eslint --fix, ./*.{js,mjs} lib test bin examples", + "lint": "eslint ./*.{js,mjs} lib test bin", + "lint:fix": "eslint --fix, ./*.{js,mjs} lib test bin", "public-docs": "jsdoc -c ./jsdoc-conf.jsonc", "publish-docs": "./bin/publish-docs.sh", "services": "DOCKER_PLATFORM=linux/$(uname -m) docker compose up -d --wait",