Skip to content

Commit

Permalink
fix: taskfile
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Akhterov <[email protected]>
  • Loading branch information
janaakhterov committed Jun 21, 2022
1 parent ce97770 commit 0634f02
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 25 deletions.
6 changes: 3 additions & 3 deletions examples/simple_rest_signature_provider/Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ tasks:

format:
cmds:
- ./node_modules/.bin/prettier "*.json" "*.js" --write > /dev/null
- ./node_modules/.bin/prettier "*.json" "src/*.js" --write > /dev/null

lint:
deps:
Expand All @@ -42,8 +42,8 @@ tasks:

"lint:format":
cmds:
- ./node_modules/.bin/prettier "*.json" "*.js" --check > /dev/null
- ./node_modules/.bin/prettier "*.json" "src/*.js" --check > /dev/null

"lint:js":
cmds:
- ./node_modules/.bin/eslint --fix "*.json" "*.js"
- ./node_modules/.bin/eslint --fix "*.json" "src/*.js"
95 changes: 73 additions & 22 deletions examples/simple_rest_signature_provider/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0634f02

Please sign in to comment.