Use absolute paths when running eslint

This commit is contained in:
Felipe Knorr Kuhn 2022-07-05 04:31:10 -07:00
parent 0a747b5609
commit 35db3ffbf0
No known key found for this signature in database
GPG Key ID: 79619B52BB097C1A

View File

@ -25,8 +25,8 @@
"start": "node --max-old-space-size=2048 dist/index.js",
"start-production": "node --max-old-space-size=4096 dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
"lint": "./node_modules/.bin/eslint . --ext .ts",
"lint:fix": "./node_modules/.bin/eslint . --ext .ts --fix"
},
"dependencies": {
"@mempool/electrum-client": "^1.1.7",