Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .claude/settings.local.json

This file was deleted.

6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ lint: ## Run linting checks
uv run ruff check .

format: ## Format code with ruff
uv tool run ruff format .
uv tool run ruff check --fix .
uv run ruff format .
uv run ruff check --fix .

check-format: ## Check if code is formatted correctly
uv tool run ruff format --check .
uv run ruff format --check .

check-compat: ## Check Python 3.12 compatibility
uv tool run vermin --target=3.12- --no-tips --violations .
Expand Down
2 changes: 2 additions & 0 deletions libs/giskard-checks/src/giskard/checks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
LesserThan,
LesserThanEquals,
NotEquals,
RegexMatching,
SemanticSimilarity,
StringMatching,
from_fn,
Expand Down Expand Up @@ -92,6 +93,7 @@
"LLMJudge",
"SemanticSimilarity",
"StringMatching",
"RegexMatching",
# Interaction
"InteractionSpec",
# Generators
Expand Down
3 changes: 2 additions & 1 deletion libs/giskard-checks/src/giskard/checks/builtin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@
# Import other builtin checks (staying in builtin)
from .fn import FnCheck, from_fn
from .semantic_similarity import SemanticSimilarity
from .string_matching import StringMatching
from .text_matching import RegexMatching, StringMatching

__all__ = [
"from_fn",
"FnCheck",
"StringMatching",
"RegexMatching",
"Equals",
"NotEquals",
"LesserThan",
Expand Down
232 changes: 0 additions & 232 deletions libs/giskard-checks/src/giskard/checks/builtin/string_matching.py

This file was deleted.

Loading