Skip to content

Commit

Permalink
Fixed lint scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
vhuseinova-msft committed Aug 21, 2023
1 parent db01d30 commit a714309
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"test": "",
"prettier": "prettier --no-error-on-unmatched-pattern --write --config ./.prettierrc --ignore-path=../.prettierignore \"**/*.js\" \"**/*.jsx\" \"**/*.ts\" \"**/*.tsx\"",
"prettier:check": "prettier --no-error-on-unmatched-pattern --check --config ./.prettierrc --ignore-path=./.prettierignore \"**/*.js\" \"**/*.jsx\" \"**/*.ts\" \"**/*.tsx\"",
"lint": "eslint */**/*.{ts,tsx}",
"lint:fix": "eslint */**/*.{ts,tsx} --fix",
"lint:quiet": "eslint */**/*.{ts,tsx} --quiet"
"lint": "eslint \"**/*.{ts,tsx}\"",
"lint:fix": "eslint **/*.{ts,tsx} --fix",
"lint:quiet": "eslint **/*.{ts,tsx} --quiet"
},
"dependencies": {
"@azure/abort-controller": "^1.1.0",
Expand Down

0 comments on commit a714309

Please sign in to comment.