Completed
Push — master ( b50573...8e7f82 )
by P.R.
01:58
created

SdocStyle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
dl 0
loc 30
ccs 11
cts 11
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
B __init__() 0 24 1
1 1
from cleo import OutputFormatterStyle
2 1
from cleo.styles import CleoStyle
3
4
5 1
class SdocStyle(CleoStyle):
6
    """
7
    Output style for SDoc.
8
    """
9
10
    # ------------------------------------------------------------------------------------------------------------------
11 1
    def __init__(self, input, output):
12
        """
13
        Object constructor.
14
15
        :param cleo.inputs.input.Input input: The input object.
16
        :param cleo.outputs.output.Output output: The output object.
17
        """
18 1
        CleoStyle.__init__(self, input, output)
19
20
        # Style for file system objects (e.g. file and directory names).
21 1
        style = OutputFormatterStyle('green', None, ['bold'])
22 1
        output.get_formatter().set_style('fso', style)
23
24
        # Style for errors.
25 1
        style = OutputFormatterStyle('red', None, ['bold'])
26 1
        output.get_formatter().set_style('err', style)
27
28
        # Style for warnings.
29 1
        style = OutputFormatterStyle('yellow', None, ['bold'])
30 1
        output.get_formatter().set_style('warn', style)
31
32
        # Style for SDoc1 notices.
33 1
        style = OutputFormatterStyle('yellow')
34 1
        output.get_formatter().set_style('notice', style)
35
36
# ----------------------------------------------------------------------------------------------------------------------
37