Skip to content

Commit ae1c6fb

Browse files
authored
build(deps-dev): replace standard with neostandard (#82)
1 parent fe23304 commit ae1c6fb

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

eslint.config.js

Lines changed: 6 additions & 0 deletions
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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"example-pass": "echo \"This is the example hook, I exit with 0\" && exit 0",
1010
"install": "node install.js",
1111
"unit": "c8 node --test",
12-
"lint": "standard",
12+
"lint": "eslint",
13+
"lint:fix": "eslint --fix",
1314
"test": "npm run unit",
1415
"uninstall": "node uninstall.js"
1516
},
@@ -45,8 +46,8 @@
4546
},
4647
"devDependencies": {
4748
"c8": "^10.1.2",
49+
"neostandard": "^0.11.9",
4850
"pre-commit": "git+https://git@github.com/fastify/pre-commit.git",
49-
"proxyquire": "^2.1.3",
50-
"standard": "^17.1.0"
51+
"proxyquire": "^2.1.3"
5152
}
5253
}

0 commit comments

Comments
 (0)