From 970ddcac7b7641649ae6ce6e550ec6b52f277be0 Mon Sep 17 00:00:00 2001 From: Erik Krogh Kristensen Date: Mon, 11 May 2020 15:38:45 +0200 Subject: [PATCH] autoformat --- javascript/ql/src/Expressions/UnknownDirective.ql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/ql/src/Expressions/UnknownDirective.ql b/javascript/ql/src/Expressions/UnknownDirective.ql index 48d1ea63e06..c63706d8942 100644 --- a/javascript/ql/src/Expressions/UnknownDirective.ql +++ b/javascript/ql/src/Expressions/UnknownDirective.ql @@ -17,6 +17,6 @@ where not d.getExpr().getStringValue() = ":" and // but exclude attribute top-levels: `` not d.getParent() instanceof CodeInAttribute and - // exclude babel generated directives like "@babel/helpers - typeof". + // exclude babel generated directives like "@babel/helpers - typeof". not d.getDirectiveText().prefix(14) = "@babel/helpers" select d, "Unknown directive: '" + truncate(d.getDirectiveText(), 20, " ... (truncated)") + "'."