File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11/**
2- * @name Alert messages style violation
3- * @description Alert message that doesn't follow some aspect of the style guide.
2+ * @name Alert message style violation
3+ * @description An alert message that doesn't follow the style guide is harder for end users to digest .
44 * See the style guide here: https://github.com/github/codeql/blob/main/docs/query-metadata-style-guide.md#alert-messages
55 * @kind problem
66 * @problem.severity warning
7- * @id ql/alert-messages -style-violation
7+ * @id ql/alert-message -style-violation
88 * @precision high
99 */
1010
@@ -132,9 +132,9 @@ where
132132 msg = "Don't quote substitutions in alert messages."
133133 or
134134 node = wrongFlowsPhrase ( _, "data" ) and
135- msg = "Use \"flows to\" instead of \"depends on\" in taint tracking queries."
135+ msg = "Use \"flows to\" instead of \"depends on\" in data flow queries."
136136 or
137137 node = wrongFlowsPhrase ( _, "taint" ) and
138- msg = "Use \"depends on\" instead of \"flows to\" in data flow queries."
138+ msg = "Use \"depends on\" instead of \"flows to\" in taint tracking queries."
139139 )
140140select node , msg
You can’t perform that action at this time.
0 commit comments