-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.high-strictness.lkml
53 lines (45 loc) · 1.38 KB
/
manifest.high-strictness.lkml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
project_name: "looker_lams_poc"
#LAMS
#rule_exemptions: {
#}
#rule: field_label {
# description: "All fields should have a label"
# match: "$.model.*.view.*['dimension','measure'].*"
# expr_rule: (!== ::match:label undefined) ;;
#}
#rule: date_description {
# description: "All date fields descriptions should start with 'Date'"
# match: "$.model.*.view.*.dimension_group[?(@.timeframes)]"
# expr_rule: ($boolean ($match
# "^Date"
# ::match:description
# )) ;;
#}
#rule: value_format {
# description: "All measures should declare a value_format or a value_format_name"
# match: "$.model.*.view.*.measure.*"
# expr_rule: ($any
# (!== ::match:value_format undefined)
# (!== ::match:value_format_name undefined)
# ) ;;
#}
#rule: join_relationship {
# description: "All joins in an explore should declare a relationship"
# match: "$.model.*.explore.*.join.*"
# expr_rule: (!== ::match:relationship undefined) ;;
#}
#rule: datagroup {
# description: "Model should declare a datagroup"
# match: "$.model.*"
# expr_rule: (!== ::match:datagroup undefined) ;;
#}
#rule: tests {
# description: "The project should contain tests"
# match: "$.model.*"
# expr_rule: (!== ::match:test undefined) ;;
#}
#rule: PDTs {
# description: "The project should not contain PDT: modeling should be handled by dbt"
# match: "$.model.*.view.*"
# expr_rule: (=== ::match:derived_table undefined) ;;
#}