Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/package/src/common/project-lint.sh
6450 views
1
#!/usr/bin/env bash
2
3
# run this from the top-level quarto-cli directory
4
deno lint -c deno.jsonc 2>&1 | grep ' *at ' | sed "s/:.*$//" | sort | uniq | sort
5