From 7e2b01e08574b2b42c6840bd6f2226bb59ed5fd1 Mon Sep 17 00:00:00 2001 From: Luke Karrys Date: Mon, 2 Dec 2024 17:23:28 -0700 Subject: [PATCH] chore: migrate from standard to neostandard --- eslint.config.js | 3 +++ package.json | 7 ++++--- 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 eslint.config.js diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000000..5212dc93d5 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,3 @@ +'use strict' + +module.exports = require('neostandard')({}) diff --git a/package.json b/package.json index 0b65301d4d..d3ecfaee20 100644 --- a/package.json +++ b/package.json @@ -39,13 +39,14 @@ "devDependencies": { "bindings": "^1.5.0", "cross-env": "^7.0.3", + "eslint": "^9.16.0", "mocha": "^11.0.1", "nan": "^2.14.2", - "require-inject": "^1.4.4", - "standard": "^17.0.0" + "neostandard": "^0.11.9", + "require-inject": "^1.4.4" }, "scripts": { - "lint": "standard \"*/*.js\" \"test/**/*.js\" \".github/**/*.js\"", + "lint": "eslint \"*/*.js\" \"test/**/*.js\" \".github/**/*.js\"", "test": "cross-env NODE_GYP_NULL_LOGGER=true mocha --timeout 15000 test/test-download.js test/test-*" } }