feat: add the possibility to pass the level as argument

pull/442/head
QuentinN42 3 years ago
parent d666308eb6
commit 4ae5487e3e
No known key found for this signature in database
GPG Key ID: 2CD7D563712B3A50

@ -33,7 +33,7 @@ PROBLEM_LEVELS = {
class LintProblem(object):
"""Represents a linting problem found by yamllint."""
def __init__(self, line, column, desc='<no description>', rule=None):
def __init__(self, line, column, desc='<no description>', rule=None, level=None):
#: Line on which the problem was found (starting at 1)
self.line = line
#: Column on which the problem was found (starting at 1)
@ -42,7 +42,7 @@ class LintProblem(object):
self.desc = desc
#: Identifier of the rule that detected the problem
self.rule = rule
self.level = None
self.level = level
@property
def message(self):

Loading…
Cancel
Save