我正在使用崇高的文字3。 pylinter的设置: `
// Ignore Pylint error types. Possible values:
// "R" : Refactor for a "good practice" metric violation
// "C" : Convention for coding standard violation
// "W" : Warning for stylistic problems, or minor programming issues
// "E" : Error for important programming issues (i.e. most probably bug)
// "F" : Fatal for errors which prevented further processing
"ignore": [],`
假设我想忽略R和C的警告,我该如何使用这些选项?
我尝试过"ignore": ["RC"],
,但它不起作用。
答案 0 :(得分:1)
["R", "C"]
应该是正确的方法。