Comparison

.semgrep.yml @ 12802:4a8740e01813

Merge 0.12->trunk
author Kim Alvefur <zash@zash.se>
date Mon, 12 Dec 2022 07:10:54 +0100
parent 12717:898e99f49d80
comparison
equal deleted inserted replaced
12801:ebd6b4d8bf04 12802:4a8740e01813
20 - pattern-not: module:get_option_string("...", host) 20 - pattern-not: module:get_option_string("...", host)
21 - pattern-not: module:get_option_string("...", module.host) 21 - pattern-not: module:get_option_string("...", module.host)
22 message: Non-string default from :get_option_string 22 message: Non-string default from :get_option_string
23 severity: ERROR 23 severity: ERROR
24 languages: [lua] 24 languages: [lua]
25 - id: stanza-empty-text-constructor
26 patterns:
27 - pattern: $A:text()
28 message: Use :get_text() to read text, or pass a value here to add text
29 severity: WARNING
30 languages: [lua]