-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Tests / Build Scripts: Configure PHPStan levels 1-6 [Exploratory] #7619
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
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
Co-authored-by: Aaron Jorbin <jorbin@git.wordpress.org>
12675ea to
6e2aa00
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.neonfor remediating errorsphpstan.neon.disttophpstan.neon.parameters.levelto the desired level, and filter out the errors by adding them to theparameters.ignoreErrorslist.composer run analyse.Remediating errors using the error baselines
While
parameters.ignoreErrorsis 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.ignoreErrorslist in thephpstan.neon.distfile. 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.levelinphpstan.neonto the level identified in step 1.Comment out the
includesfor 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}.phpPrior Art
This is based off the work done in #853 with some notable differences:
Latest
trunkand 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.distfile wraps thetests/phpstan/base.neonconfig 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.neonfile.Removed many of the
parameters.ignoreErrorsin favor of error baselines (one per each PHPStan level).See
Remediating errors using the error baselinessection above.The
tests/phpstan/bootstrap.phpfile 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 aboutmixedtypes - 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.