Skip to content

Commit

Permalink
Set --max-warnings=0 to eslint commands
Browse files Browse the repository at this point in the history
  • Loading branch information
dongzoolee committed Sep 8, 2023
1 parent 744a2c0 commit e8afa08
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 @@ -10,8 +10,8 @@
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && git add -f out/ && git commit -m \"Deploy Next.js\" && git subtree push --prefix out origin gh-pages",
"pretty:check": "prettier -c .",
"pretty:fix": "prettier -w .",
"eslint:check": "eslint './**/*.{js,jsx,ts,tsx}'",
"eslint:fix": "eslint --fix './**/*.{js,jsx,ts,tsx}'",
"eslint:check": "eslint --max-warnings=0 './**/*.{js,jsx,ts,tsx}'",
"eslint:fix": "eslint --fix --max-warnings=0 './**/*.{js,jsx,ts,tsx}'",
"prepare": "husky install"
},
"dependencies": {
Expand Down

0 comments on commit e8afa08

Please sign in to comment.