diff options
author | Chimrod <> | 2023-11-04 17:16:16 +0100 |
---|---|---|
committer | Chimrod <> | 2023-11-04 17:16:16 +0100 |
commit | 6ada3862d96f82e44b3b19dd84d08cbb8c6a6006 (patch) | |
tree | e2fa4e223c4ce0f3945af76f9e82e887b307a95b /lib/syntax/nested_strings.ml | |
parent | 673da2554d3e667e0a62d5c7bbf30999f1295dc1 (diff) |
Allow test to be enabled or disabled by command line
Diffstat (limited to 'lib/syntax/nested_strings.ml')
-rw-r--r-- | lib/syntax/nested_strings.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/syntax/nested_strings.ml b/lib/syntax/nested_strings.ml index 37f352c..16ec4ac 100644 --- a/lib/syntax/nested_strings.ml +++ b/lib/syntax/nested_strings.ml @@ -2,6 +2,7 @@ open StdLabels let identifier = "escaped_string" let description = "Check for unnecessary use of expression encoded in string" +let active = ref true module Expression : S.Expression with type t' = Report.t list = struct type t = Report.t list |