We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddbb0d0 commit f9c7515Copy full SHA for f9c7515
1 file changed
scripts/generate_rules/templates/shared_library.ql.template
@@ -13,11 +13,11 @@ import codingstandards.{{ ql_language_name }}.Customizations
13
import codingstandards.{{ ql_language_name }}.Exclusions
14
15
signature module {{shared_implementation_short_name}}ConfigSig {
16
- Query getQuery();
+ Query getQuery();
17
}
18
19
module {{shared_implementation_short_name}}<{{shared_implementation_short_name}}ConfigSig Config> {
20
- query predicate problems(Element e, string message) {
21
- not isExcluded(e, Config::getQuery()) and message = "<replace with problem alert message for >"
22
- }
+ query predicate problems(Element e, string message) {
+ not isExcluded(e, Config::getQuery()) and message = "<replace with problem alert message for >"
+ }
23
0 commit comments