-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Tests / Build Scripts: Configure PHPStan static analysis #7619
base: trunk
Are you sure you want to change the base?
Conversation
Hi @justlevine! 👋 Thank you for your contribution to WordPress! 💖 It looks like this is your first pull request to No one monitors this repository for new pull requests. Pull requests must be attached to a Trac ticket to be considered for inclusion in WordPress Core. To attach a pull request to a Trac ticket, please include the ticket's full URL in your pull request description. Pull requests are never merged on GitHub. The WordPress codebase continues to be managed through the SVN repository that this GitHub repository mirrors. Please feel free to open pull requests to work on any contribution you are making. More information about how GitHub pull requests can be used to contribute to WordPress can be found in the Core Handbook. Please include automated tests. Including tests in your pull request is one way to help your patch be considered faster. To learn about WordPress' test suites, visit the Automated Testing page in the handbook. If you have not had a chance, please review the Contribute with Code page in the WordPress Core Handbook. The Developer Hub also documents the various coding standards that are followed:
Thank you, |
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the Core Committers: Use this line as a base for the props when committing in SVN:
To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
Test using WordPress PlaygroundThe changes in this pull request can previewed and tested using a WordPress Playground instance. WordPress Playground is an experimental project that creates a full WordPress instance entirely within the browser. Some things to be aware of
For more details about these limitations and more, check out the Limitations page in the WordPress Playground documentation. |
94cf5e4
to
3ed2a8f
Compare
3ed2a8f
to
1aae38c
Compare
1aae38c
to
a3005aa
Compare
34897c4
to
e8d563b
Compare
e8d563b
to
e22277c
Compare
This makes it easier to use this branch for cherrypicking/remediation, even if the eventual version of _this_ pr will need to be downgraded back down to 1.x
e22277c
to
4f1a261
Compare
Trac ticket: https://core.trac.wordpress.org/ticket/61175
This PR adds a PHPStan configuration along with error baselines through Level 6.
The hope is the limited scope will make this easier to review/merge, with actual code remediations occuring in future (or even parallel) PRs.
Usage
Run PHPStan
Create a local
phpstan.neon
for remediating errorsphpstan.neon.dist
tophpstan.neon
.parameters.level
to the desired level, and filter out the errors by adding them to theparameters.ignoreErrors
list.composer run analyse
.Remediating errors using the error baselines
While
parameters.ignoreErrors
is used to filter out "unsupported" errors, error baselines are used to suppress preexisting tech debt.This allows for the PR to be merged as is to enforce the rules on new code, while allowing contributors to remediate the existing errors at their own pace. This is in the spirit of 'Avoid unnecessary refactoring'.
To remediate a baselined error, remove the error from the
tests/phpstan/baseline/level-{%N}
file and run PHPStan again.Triaging errors and regenerating baselines
If an error is found to be a false positive (or otherwise not worth fixing), it should be added to the
parameters.ignoreErrors
list in thephpstan.neon.dist
file. When this happens, the baseline file suppressing the error will cause PHPStan to fail.To avoid manual remediation, the baseline files can be regenerated by following the following steps:
Identify the baseline level that contains the error. (Search for the error in
tests/phpstan/baseline
).Change the
parameters.level
inphpstan.neon
to the level identified in step 1.Comment out the
includes
for that level and all levels above it.Run the following command:
# Replace {%N} with the level identified in step 1 vendor/bin/phpstan analyse --generate-baseline tests/phpstan/baseline/level-{%N}.php
Prior Art
This is based off the work done in #853 with some notable differences:
Latest
trunk
and PHPStan (1.12.7) - as of writing.No changes to WordPress core codebase.
This is to limit the scope of the PR and hopefuly prevent it from going stale.
The
phpstan.neon.dist
file wraps thetests/phpstan/base.neon
config that holds the codebase configuration (what to scan/skip, etc), with the top-level file holding the "rules".This makes it easier for contributors to remediate errors by creating a local
phpstan.neon
file.Removed many of the
parameters.ignoreErrors
in favor of error baselines (one per each PHPStan level).See
Remediating errors using the error baselines
section above.The
tests/phpstan/bootstrap.php
file has been reorganized to mirror the order that the constants are defined in the WP lifecycle.This will hopefully make it easier to maintain in the future.
Added inline annotations to the various configs.
Additional Notes
ignoreErrors
) - Level 9+ is primarily aboutmixed
types - that can be handled incrementally in a future PR that contains the necessary code remediations.Next Steps
ignoreErrors
.This Pull Request is for code review only. Please keep all other discussion in the Trac ticket. Do not merge this Pull Request. See GitHub Pull Requests for Code Review in the Core Handbook for more details.