We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c5241a commit f84e79cCopy full SHA for f84e79c
eslint.config.js
@@ -0,0 +1,6 @@
1
+'use strict'
2
+
3
+module.exports = require('neostandard')({
4
+ ignores: require('neostandard').resolveIgnoresFromGitignore(),
5
+ ts: true
6
+})
package.json
@@ -4,8 +4,8 @@
"description": "Finds changes between two OpenAPI schemas",
"main": "index.js",
"scripts": {
7
- "lint": "standard",
8
- "lint:fix": "standard --fix",
+ "lint": "eslint",
+ "lint:fix": "eslint --fix",
9
"test:unit": "c8 --100 node --test",
10
"test": "npm run lint && npm run test:unit"
11
},
@@ -31,6 +31,6 @@
31
32
"devDependencies": {
33
"c8": "^8.0.1",
34
- "standard": "^17.1.0"
+ "neostandard": "^0.11.9"
35
}
36
0 commit comments