From f409661a3f4b129b64486268a3e10960d4fe5672 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Sun, 8 Dec 2024 10:45:43 +0000 Subject: [PATCH 1/2] build(deps-dev): replace standard with neostandard --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index d5d5de7..8bca5c1 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,8 @@ "description": "Finds changes between two OpenAPI schemas", "main": "index.js", "scripts": { - "lint": "standard", - "lint:fix": "standard --fix", + "lint": "eslint", + "lint:fix": "eslint --fix", "test:unit": "c8 --100 node --test", "test": "npm run lint && npm run test:unit" }, @@ -31,6 +31,6 @@ }, "devDependencies": { "c8": "^8.0.1", - "standard": "^17.1.0" + "neostandard": "^0.11.9" } } From 18bbcc345f78d9884043eb76db9a5eaf8e793873 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Sun, 8 Dec 2024 10:54:35 +0000 Subject: [PATCH 2/2] chore: add eslint.config.js --- eslint.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 eslint.config.js diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..89fd678 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,6 @@ +'use strict' + +module.exports = require('neostandard')({ + ignores: require('neostandard').resolveIgnoresFromGitignore(), + ts: true +})