Skip to content

Commit bcc2d94

Browse files
committed
Run eslint with --quiet
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.
1 parent 149938d commit bcc2d94

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- *attach-step
5757
- run:
5858
name: Lint
59-
command: npm run lint
59+
command: npm run lint -- --quiet
6060

6161
node-10:
6262
docker:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
},
6767
"lint-staged": {
6868
"*.{js,css,md}": "prettier --check",
69-
"*.js": "eslint",
70-
"*.mjs": "eslint --ext mjs --parser-options=sourceType:module"
69+
"*.js": "eslint --quiet",
70+
"*.mjs": "eslint --quiet --ext mjs --parser-options=sourceType:module"
7171
},
7272
"dependencies": {
7373
"@sinonjs/commons": "^1.8.1",

0 commit comments

Comments
 (0)