Skip to content

Commit b491124

Browse files
committed
~ Exclude third-party when running PHPCS
1 parent 830e5f1 commit b491124

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

phpcs.xml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
<!-- Exclude Composer vendor directory. -->
1212
<exclude-pattern>*/vendor/*</exclude-pattern>
13+
<exclude-pattern>*/third-party/*</exclude-pattern>
1314

1415
<!-- Exclude NPM modules -->
1516
<exclude-pattern>*/node_modules/*</exclude-pattern>

scoper.inc.php

+14-14
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@
1212
'finders' => array(
1313
// General dependencies, except Google API services.
1414
Finder::create()
15-
->files()
16-
->ignoreVCS( true )
17-
->notName( '/LICENSE|.*\\.md|.*\\.dist|Makefile|composer\\.(json|lock)/' )
18-
->exclude(
19-
array(
20-
'doc',
21-
'test',
22-
'test_old',
23-
'tests',
24-
'Tests',
25-
'vendor-bin',
26-
)
27-
)
28-
->in( 'vendor' ),
15+
->files()
16+
->ignoreVCS( true )
17+
->notName( '/LICENSE|.*\\.md|.*\\.dist|Makefile|composer\\.(json|lock)/' )
18+
->exclude(
19+
array(
20+
'doc',
21+
'test',
22+
'test_old',
23+
'tests',
24+
'Tests',
25+
'vendor-bin',
26+
)
27+
)
28+
->in( 'vendor' ),
2929
),
3030
'files-whitelist' => array(),
3131
'whitelist' => array(),

0 commit comments

Comments
 (0)