Skip to content

Commit

Permalink
build(deps-dev): replace standard with neostandard (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored Dec 8, 2024
1 parent fe23304 commit ae1c6fb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
'use strict'

module.exports = require('neostandard')({
ignores: require('neostandard').resolveIgnoresFromGitignore(),
ts: true
})
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"example-pass": "echo \"This is the example hook, I exit with 0\" && exit 0",
"install": "node install.js",
"unit": "c8 node --test",
"lint": "standard",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "npm run unit",
"uninstall": "node uninstall.js"
},
Expand Down Expand Up @@ -45,8 +46,8 @@
},
"devDependencies": {
"c8": "^10.1.2",
"neostandard": "^0.11.9",
"pre-commit": "git+https://[email protected]/fastify/pre-commit.git",
"proxyquire": "^2.1.3",
"standard": "^17.1.0"
"proxyquire": "^2.1.3"
}
}

0 comments on commit ae1c6fb

Please sign in to comment.