diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..5212dc9 --- /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 19d9809..2fabd0a 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,8 @@ "url": "https://github.com/goto-bus-stop/qs-stringify/issues" }, "devDependencies": { - "standard": "^17.0.0", + "eslint": "^9.12.0", + "neostandard": "^0.11.6", "tape": "^5.0.0" }, "homepage": "https://github.com/goto-bus-stop/qs-stringify", @@ -24,7 +25,7 @@ "url": "https://github.com/goto-bus-stop/qs-stringify.git" }, "scripts": { - "lint": "standard", + "lint": "eslint .", "tests-only": "node test", "test": "npm run lint && npm run tests-only" }