Skip to content

Commit

Permalink
ci: ignore dist for HTML linting to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert committed Oct 7, 2022
1 parent cba1ebf commit c757b77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"lint": "npm-run-all --continue-on-error lint:** lint-workspaces",
"lint:css": "stylelint --allow-empty-input '**/*.{css,scss}'",
"lint:js": "eslint --ext '.js,.json,.jsx,.mdx,.ts,.tsx' --report-unused-disable-directives .",
"lint:html": "find . -type d \\( -name node_modules \\) -prune -false -o -name '*.html' -print0 | xargs -0 npx html-validate",
"lint:html": "find . -type d \\( -name coverage -or -name dist -or -name node_modules -or -name build\\) -prune -false -o -name '*.html' -print0 | xargs -0 npx html-validate",
"lint:md": "markdownlint '**/*.md'",
"lint:package-json": "npmPkgJsonLint '**/package.json'",
"lint:package-lock": "npm ls",
Expand Down

0 comments on commit c757b77

Please sign in to comment.