Fix lint command to prevent error

Error message: No files matching the pattern
"'{pages,components}/**/*.{js,ts,tsx,jsx}'"
were found.
This commit is contained in:
William Tran 2021-05-31 21:13:50 -04:00
parent 552330ca9b
commit 0762d640c3
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint '{pages,components}/**/*.{js,ts,tsx,jsx}' --quiet",
"lint:fix": "eslint '{pages,components}/**/*.{js,ts,tsx,jsx}' --quiet --fix"
"lint": "eslint \"{pages,components}/**/*.{js,ts,tsx,jsx}\" --quiet",
"lint:fix": "eslint \"{pages,components}/**/*.{js,ts,tsx,jsx}\" --quiet --fix"
},
"dependencies": {
"@mdx-js/loader": "^1.6.22",