#!/bin/bash # Code quality checks for Rentgen extension # Runs typecheck and lint set -e echo "Running type checking..." npm run typecheck echo "Running linter..." npm run lint echo "✓ All code quality checks passed!"