aboutsummaryrefslogtreecommitdiffhomepage
path: root/.cppcheck.rule
blob: d8f67a83a1ee5f47fb559d8c14f38c54e7d547b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0"?>
<rule version="1">
    <pattern> wcwidth \(</pattern>
    <message>
        <id>wcwidthForbidden</id>
        <severity>warning</severity>
        <summary>Always use fish_wcwidth rather than wcwidth.</summary>
    </message>
</rule>

<rule version="1">
    <pattern> wcswidth \(</pattern>
    <message>
        <id>wcswidthForbidden</id>
        <severity>warning</severity>
        <summary>Always use fish_wcswidth rather than wcswidth.</summary>
    </message>
</rule>