aste123
aste123

Reputation: 1242

pylinter config for sublime text 3

I'm using sublime text 3. Settings of 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": [],`

Suppose I want to ignore the warnings for R and C, how do I use these options? I tried doing "ignore": ["RC"], but it doesn't work.

Upvotes: 0

Views: 1188

Answers (1)

Vikram Saran
Vikram Saran

Reputation: 1143

["R", "C"] should be the correct method.

Upvotes: 1

Related Questions