forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
55 lines (54 loc) · 2.21 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="utf-8"?>
<project name="PHPStan">
<target name="lint">
<exec
executable="vendor/bin/parallel-lint"
logoutput="true"
passthru="true"
checkreturn="true"
>
<arg value="--colors"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Analyser/data"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Methods/data"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Functions/data"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Operators/data/invalid-inc-dec.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Arrays/data/offset-access-without-dim-for-reading.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Classes/data/duplicate-declarations.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Classes/data/extends-error.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Classes/data/implements-error.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Classes/data/interface-extends-error.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Classes/data/trait-use-error.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Properties/data/default-value-for-native-property-type.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Arrays/data/empty-array-item.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Classes/data/invalid-promoted-properties.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Classes/data/duplicate-promoted-property.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Properties/data/default-value-for-promoted-property.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Operators/data/invalid-assign-var.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Functions/data/arrow-function-nullsafe-by-ref.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Levels/data/namedArguments.php"/>
<arg value="--exclude"/>
<arg path="tests/PHPStan/Rules/Keywords/data/continue-break.php"/>
<arg path="src" />
<arg path="tests" />
<arg path="compiler/src" />
</exec>
</target>
</project>