GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Pull Request — master (#8)
by Cedric
01:27
created

test/samples/icls-strings.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 66
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
wmc 0
c 1
b 0
f 0
nc 1
mnd 0
bc 0
fnc 0
dl 0
loc 66
rs 10
bpm 0
cpm 0
noi 0
1
export const schemeNode = '<scheme name="Material Peacock Optimized" version="142">' +
2
    '</scheme>';
3
4
5
export const firstLevelOptionsNode = '<scheme name="Material Peacock Optimized" version="142">' +
6
    '  <option name="FONT_SCALE" value="1.0" />' +
7
    '  <option name="LINE_SPACING" value="1.2" />' +
8
    '  <option name="EDITOR_FONT_SIZE" value="12" />' +
9
    '  <option name="EDITOR_FONT_NAME" value="Fira Code" />' +
10
    '  <option name="EDITOR_LIGATURES" value="true" />' +
11
    '  <option name="CONSOLE_FONT_NAME" value="Menlo" />' +
12
    '  <option name="CONSOLE_LINE_SPACING" value="1.4" />' +
13
    '</scheme>';
14
15
16
export const colorsNode = '<scheme>' +
17
    '  <colors>' +
18
    '    <option name="ADDED_LINES_COLOR" value="5f7210" />' +
19
    '    <option name="ANNOTATIONS_COLOR" value="8b999f" />' +
20
    '    <option name="CARET_COLOR" value="60999d" />' +
21
    '    <option name="CARET_ROW_COLOR" value="0c1418" />' +
22
    '    <option name="CONSOLE_BACKGROUND_KEY" value="" />' +
23
    '  </colors>' +
24
    '</scheme>';
25
26
export const attributesNode = '<scheme>' +
27
    '  <attributes>' +
28
    '    <option name="BNF_ILLEGAL">' +
29
    '      <value>' +
30
    '        <option name="FOREGROUND" value="d0d0ff" />' +
31
    '      </value>' +
32
    '    </option>' +
33
    '    <option name="BNF_KEYWORD">' +
34
    '      <value>' +
35
    '        <option name="FOREGROUND" value="bbb529" />' +
36
    '        <option name="BACKGROUND" value="629755" />' +
37
    '      </value>' +
38
    '    </option>' +
39
    '  </attributes>' +
40
    '</scheme>';
41
42
export const attributesNodeWithDeepKeys = '<scheme>' +
43
    '  <attributes>' +
44
    '    <option name="BASH.HERE_DOC">' +
45
    '      <value>' +
46
    '        <option name="BACKGROUND" value="4b694c" />' +
47
    '        <option name="FOREGROUND" value="bc1d36" />' +
48
    '      </value>' +
49
    '    </option>' +
50
    '    <option name="BASH.INTERNAL_COMMAND">' +
51
    '      <value>' +
52
    '        <option name="FOREGROUND" value="2544ff" />' +
53
    '      </value>' +
54
    '    </option>' +
55
    '  </attributes>' +
56
    '</scheme>';
57
58
export const unexpectedObject = '<scheme>' +
59
    '  <option name="FONT_SCALE" value="1.0" />' +
60
    '  <option />' +
61
    '  <colors>' +
62
    '    <option />' +
63
    '    <option name="ANNOTATIONS_COLOR" value="8b999f" />' +
64
    '  </colors>' +
65
    '  <colors />' +
66
    '</scheme>';
67