Skip to content

Commit

Permalink
Run eslint with --quiet
Browse files Browse the repository at this point in the history
By using `--quiet` we allow builds to pass when there are warnings.
This will be a temporary meassure to ensure that we can have
frictionlesss contributions, while we build up documentation via JSDoc
strings.

Without this setting, all builds would fail until we fix all the
warnings for missing JSDoc strings.
  • Loading branch information
mroderick committed Mar 22, 2021
1 parent 149938d commit bcc2d94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- *attach-step
- run:
name: Lint
command: npm run lint
command: npm run lint -- --quiet

node-10:
docker:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@
},
"lint-staged": {
"*.{js,css,md}": "prettier --check",
"*.js": "eslint",
"*.mjs": "eslint --ext mjs --parser-options=sourceType:module"
"*.js": "eslint --quiet",
"*.mjs": "eslint --quiet --ext mjs --parser-options=sourceType:module"
},
"dependencies": {
"@sinonjs/commons": "^1.8.1",
Expand Down

0 comments on commit bcc2d94

Please sign in to comment.