50
|
1 |
<!--
|
|
2 |
#
|
|
3 |
# Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
4 |
# All rights reserved.
|
|
5 |
# This component and the accompanying materials are made available
|
|
6 |
# under the terms of "Eclipse Public License v1.0"
|
|
7 |
# which accompanies this distribution, and is available
|
|
8 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
9 |
#
|
|
10 |
# Initial Contributors:
|
|
11 |
# Nokia Corporation - initial contribution.
|
|
12 |
#
|
|
13 |
# Contributors:
|
|
14 |
#
|
|
15 |
# Description: Configuration file for the Carbine CodeScanner, to
|
|
16 |
# scan only high-priority issues.
|
|
17 |
#
|
|
18 |
-->
|
|
19 |
<codescannerConfig>
|
|
20 |
<sources>
|
|
21 |
<!-- source files matching any of the exclude patterns below will not be scanned -->
|
|
22 |
|
|
23 |
<!-- binary files -->
|
|
24 |
<exclude>.*\.au</exclude>
|
|
25 |
<exclude>.*\.avi</exclude>
|
|
26 |
<exclude>.*\.bmp</exclude>
|
|
27 |
<exclude>.*\.dll</exclude>
|
|
28 |
<exclude>.*\.doc</exclude>
|
|
29 |
<exclude>.*\.exe</exclude>
|
|
30 |
<exclude>.*\.gif</exclude>
|
|
31 |
<exclude>.*\.jpg</exclude>
|
|
32 |
<exclude>.*\.mbm</exclude>
|
|
33 |
<exclude>.*\.mp3</exclude>
|
|
34 |
<exclude>.*\.mpg</exclude>
|
|
35 |
<exclude>.*\.png</exclude>
|
|
36 |
<exclude>.*\.raw</exclude>
|
|
37 |
<exclude>.*\.rtf</exclude>
|
|
38 |
<exclude>.*\.tif</exclude>
|
|
39 |
<exclude>.*\.wav</exclude>
|
|
40 |
<exclude>.*\.wbmp</exclude>
|
|
41 |
<exclude>.*\.wmf</exclude>
|
|
42 |
<exclude>.*\.xls</exclude>
|
|
43 |
<!-- typical test directory names -->
|
|
44 |
<exclude>.*\\ts_.*</exclude>
|
|
45 |
<exclude>.*\\tsrc\\.*</exclude>
|
|
46 |
<exclude>.*\\tsrc.s60\\.*</exclude>
|
|
47 |
<exclude>.*\\test\\.*</exclude>
|
|
48 |
<exclude>.*\\internal\\.*</exclude>
|
|
49 |
<exclude>.*\\Internal\\.*</exclude>
|
|
50 |
<exclude>.*\\.svn\\.*</exclude>
|
|
51 |
<exclude>\\tools\\.*</exclude>
|
|
52 |
</sources>
|
|
53 |
<severities>
|
|
54 |
<!-- Group scripts based on severity level: -->
|
|
55 |
<!-- enable="true" or "false" -->
|
|
56 |
|
|
57 |
<high enable="true"/>
|
|
58 |
<medium enable="false"/>
|
|
59 |
<low enable="false"/>
|
|
60 |
</severities>
|
|
61 |
</codescannerConfig>
|