Skip to content

Commit

Permalink
update lint scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
arthropodSeven committed Mar 8, 2021
1 parent 74c3425 commit 41e6634
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint.js": "eslint -- ./pages",
"lint.js.fix": "eslint --fix -- ./pages",
"lint.js": "eslint -- ./pages ./components ./util",
"lint.js.fix": "eslint --fix -- ./pages ./components ./util",
"lint.style": "stylelint -- ./styles",
"lint.style.fix": "stylelint --fix -- ./styles",
"lint": "yarn run lint.js ; yarn run lint.style",
"lint.fix": "yarn run lint.js.fix ; yarn run lint.style.fix"
"lint": "yarn run lint.js && yarn run lint.style",
"lint.fix": "yarn run lint.js.fix && yarn run lint.style.fix"
},
"dependencies": {
"next": "10.0.7",
Expand Down

0 comments on commit 41e6634

Please sign in to comment.