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 1
1
/**
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 .
4
4
* See the style guide here: https://github.com/github/codeql/blob/main/docs/query-metadata-style-guide.md#alert-messages
5
5
* @kind problem
6
6
* @problem.severity warning
7
- * @id ql/alert-messages -style-violation
7
+ * @id ql/alert-message -style-violation
8
8
* @precision high
9
9
*/
10
10
@@ -132,9 +132,9 @@ where
132
132
msg = "Don't quote substitutions in alert messages."
133
133
or
134
134
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."
136
136
or
137
137
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."
139
139
)
140
140
select node , msg
You can’t perform that action at this time.
0 commit comments