Skip to content

Commit

Permalink
pkg: remove exit 0 lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
nodech committed Sep 1, 2023
1 parent 1d728a9 commit d95bfad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: npm i -g bslint

- name: Lint
run: npm run lint-ci
run: npm run lint

build:
name: Build & Test
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,15 @@
"main": "./lib/bdb.js",
"scripts": {
"install": "node-gyp rebuild",
"lint": "eslint lib/ test/ || exit 0",
"lint-ci": "eslint lib/ test/",
"lint": "eslint lib/ test/",
"test": "bmocha --reporter spec test/*-test.js"
},
"dependencies": {
"bsert": "~0.0.10",
"bsert": "~0.0.12",
"loady": "~0.0.5"
},
"devDependencies": {
"bmocha": "^2.1.0"
"bmocha": "^2.1.8"
},
"engines": {
"node": ">=8.6.0"
Expand Down

0 comments on commit d95bfad

Please sign in to comment.