check
1 #!/bin/sh 2 set -e 3 4 npx tsc --noEmit 5 npx svelte-check --tsconfig tsconfig.json --fail-on-warnings --compiler-warnings options_missing_custom_element:ignore 6 npx eslint --cache --cache-location node_modules/.cache/eslint --max-warnings 0 . 7 npx prettier "**/*.@(ts|js|svelte|json|css|html|yml)" --ignore-path .gitignore --ignore-path .prettierignore --check --cache