Skip to content

Commit

Permalink
Merge pull request #71 from posit-dev/feat-add-briefs
Browse files Browse the repository at this point in the history
feat: add briefs and generate autobriefs
  • Loading branch information
rich-iannone authored Feb 23, 2025
2 parents c5430a4 + b6b5786 commit f49da95
Show file tree
Hide file tree
Showing 4 changed files with 1,288 additions and 39 deletions.
11 changes: 11 additions & 0 deletions pointblank/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,15 @@
"col_count_match": "COL_COUNT_MATCH",
}

COMPARISON_OPERATORS = {
"col_vals_gt": ">",
"col_vals_ge": ">=",
"col_vals_lt": "<",
"col_vals_le": "<=",
"col_vals_eq": "==",
"col_vals_ne": "!=",
}

ROW_BASED_VALIDATION_TYPES = [
"col_vals_gt",
"col_vals_lt",
Expand Down Expand Up @@ -129,6 +138,8 @@
"memtable": {"background": "#2C3E50", "text": "#FFFFFF", "label": "Ibis memtable"},
}

REPORTING_LANGUAGES = ["en", "fr", "de", "it", "es", "pt", "tr", "zh", "ru", "pl", "da", "sv", "nl"]

SEVERITY_LEVEL_COLORS = {
"warning": "#AAAAAA",
"error": "#EBBC14",
Expand Down
Loading

0 comments on commit f49da95

Please sign in to comment.