forked from icd/rentgen
14 lines
224 B
Bash
Executable File
14 lines
224 B
Bash
Executable File
#!/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!"
|