Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run PHP CodeSniffer in parallel mode by default #21

Merged
merged 1 commit into from
Mar 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ruleset.xml
n8-dev marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
<exclude-pattern>./vendor/*</exclude-pattern>
<exclude-pattern>*/thirdparty/*</exclude-pattern>

<!-- Show progress and output sniff names on violation, and add colours -->
<!-- Show progress and output sniff names on violation, add colours, and run in parallel mode -->
<arg value="p" />
<arg name="colors" />
<arg value="s" />
<arg name="parallel" value="10" />
n8-dev marked this conversation as resolved.
Show resolved Hide resolved

<!-- Use PSR-2 as a base standard -->
<rule ref="PSR2">
Expand Down