Skip to content

Commit f84e79c

Browse files
authored
build(deps-dev): replace standard with neostandard (#3)
1 parent 2c5241a commit f84e79c

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

eslint.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
'use strict'
2+
3+
module.exports = require('neostandard')({
4+
ignores: require('neostandard').resolveIgnoresFromGitignore(),
5+
ts: true
6+
})

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"description": "Finds changes between two OpenAPI schemas",
55
"main": "index.js",
66
"scripts": {
7-
"lint": "standard",
8-
"lint:fix": "standard --fix",
7+
"lint": "eslint",
8+
"lint:fix": "eslint --fix",
99
"test:unit": "c8 --100 node --test",
1010
"test": "npm run lint && npm run test:unit"
1111
},
@@ -31,6 +31,6 @@
3131
},
3232
"devDependencies": {
3333
"c8": "^8.0.1",
34-
"standard": "^17.1.0"
34+
"neostandard": "^0.11.9"
3535
}
3636
}

0 commit comments

Comments
 (0)