Skip to content

Commit

Permalink
fix: add ignored files to Deno lint & format scripts (remix-run#3486)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey authored Jun 15, 2022
1 parent 9f45499 commit c918634
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"clean": "git clean -fdX .",
"dev": "yarn build && yarn --cwd ./fixtures/gists-app/ dev",
"format": "prettier --ignore-path .eslintignore --write ./ && npm run lint:fix",
"format:deno": "deno fmt integration/helpers/deno-template packages/remix-deno templates/deno",
"format:deno": "deno fmt integration/helpers/deno-template packages/remix-deno templates/deno --ignore=node_modules,build,public/build",
"license": "node ./scripts/license.js",
"lint": "eslint --cache --ext .tsx,.ts,.js,.jsx,.md .",
"lint:deno": "deno lint integration/helpers/deno-template packages/remix-deno templates/deno",
"lint:deno": "deno lint integration/helpers/deno-template packages/remix-deno templates/deno --ignore=node_modules,build,public/build",
"lint:fix": "yarn lint --fix",
"playground:new": "node ./scripts/playground/new.js",
"publish": "node ./scripts/publish.js",
Expand Down

0 comments on commit c918634

Please sign in to comment.