Skip to content

Commit

Permalink
Simplify lint scripts in package.json (MetaMask#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
whymarrh authored Sep 2, 2020
1 parent cab43fd commit 56f695f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint . --ext .js",
"lint:fix": "./node_modules/.bin/eslint --fix . --ext .js"
"lint": "eslint . --ext .js",
"lint:fix": "eslint --fix . --ext .js"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 56f695f

Please sign in to comment.