Skip to content

Commit 9b49761

Browse files
authored
Merge pull request #565 from PHPCSStandards/feature/contributing-add-section-on-finding-issues-to-work-on
CONTRIBUTING GUIDE: add section about finding issues to work on for code contributions
2 parents ff203dc + 2d22432 commit 9b49761

File tree

1 file changed

+50
-25
lines changed

1 file changed

+50
-25
lines changed

.github/CONTRIBUTING.md

+50-25
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,21 @@ Thank you for your interest in contributing to PHP_CodeSniffer!
1111
* [Contributing Without Writing Code](#contributing-without-writing-code)
1212
* [Bug Triage](#bug-triage)
1313
* [Testing Open Pull Requests](#testing-open-pull-requests)
14-
* [Writing sniff documentation](#writing-sniff-documentation)
15-
* [Other tasks](#other-tasks)
14+
* [Writing Sniff Documentation](#writing-sniff-documentation)
15+
* [Other Tasks](#other-tasks)
1616
* [Contributing With Code](#contributing-with-code)
1717
* [Requesting/Submitting New Features](#requestingsubmitting-new-features)
18-
* [Getting started](#getting-started)
19-
* [While working on a patch](#while-working-on-a-patch)
20-
* [Writing tests](#writing-tests)
21-
* [Submitting your pull request](#submitting-your-pull-request)
18+
* [Finding Something to Work on](#finding-something-to-work-on)
19+
* [Getting Started](#getting-started)
20+
* [While Working on a Patch](#while-working-on-a-patch)
21+
* [Writing Tests](#writing-tests)
22+
* [Submitting Your Pull Request](#submitting-your-pull-request)
2223
* [Licensing](#licensing)
2324

2425

2526
## Reporting Bugs
2627

27-
Please search the [open issues](https://github.com/PHPCSStandards/PHP_CodeSniffer/issues) to see if your issue has been reported
28+
Please search the [open issues][issuelist] to see if your issue has been reported
2829
already and if so, comment in that issue if you have additional information, instead of opening a new one.
2930

3031
Before reporting a bug, you should check what sniff an error is coming from.
@@ -70,7 +71,7 @@ This includes checking whether the bug is something which should be fixed in **_
7071
To find bugs which need triage, look for issues and PRs with the
7172
["Status: triage"](https://github.com/PHPCSStandards/PHP_CodeSniffer/labels/Status%3A%20triage) label.
7273

73-
#### Typical bug triage tasks
74+
#### Typical Bug Triage Tasks
7475
* Verify whether the bug is reproducible with the given information.
7576
* Ask for additional information if it is not.
7677
* If you find the issue is reported to the wrong repo, ask the reporter to report it to the correct external standard repo
@@ -94,15 +95,15 @@ To get access to a PHPCS version which includes the patch from a pull request, y
9495
The PHAR files can be found on the summary page of the test workflow run for the PR.
9596
If the workflow has not been run (yet), the PHAR artifact may not be available (yet).
9697

97-
#### Typical test tasks
98+
#### Typical Test Tasks
9899
* Verify that the patch solves the originally reported problem.
99100
* Verify that the tests added in the PR fail without the fix and pass with the fix.
100101
* For a fix for false negatives: verify that the correct error message(s) are thrown by the patched code.
101102
* Run the patched PHPCS version against real codebases to see if the fix creates any side effects
102103
(new false positives/false negatives).
103104

104105

105-
### Writing sniff documentation
106+
### Writing Sniff Documentation
106107

107108
Sniffs in PHP_CodeSniffer should preferably be accompanied by documentation. There is currently still a lot of
108109
[documentation missing](https://github.com/PHPCSStandards/PHP_CodeSniffer/issues/148).
@@ -151,11 +152,11 @@ phpcs --standard=StandardName --generator=Text --sniffs=StandardName.Category.Sn
151152
Kind request to add only one new XML file per PR to make the PR easier to review.
152153

153154

154-
### Other tasks
155+
### Other Tasks
155156

156157
There are also tasks looking for contributions, which don't necessarily fall into the above categories.
157158

158-
#### Issues marked with "Status: waiting for opinions"
159+
#### Issues Marked with "Status: waiting for opinions"
159160

160161
Proposals for new features, proposals for (structural) changes to PHP_CodeSniffer itself or to the contributor workflow,
161162
will initially be marked with the
@@ -179,7 +180,7 @@ will be pinged (cc-ed) to gather their thoughts on the topic.
179180
> on the PR consenting to it.
180181
181182

182-
#### Issues marked with "Status: needs investigation"
183+
#### Issues Marked with "Status: needs investigation"
183184

184185
Sometimes an issue has been identified, but it has not yet been pinpointed what the exact cause of the problem is.
185186

@@ -190,7 +191,7 @@ Issues like these will be marked with the
190191
["Status: needs investigation"](https://github.com/PHPCSStandards/PHP_CodeSniffer/labels/Status%3A%20needs%20investigation)
191192
and investigating those can be a good way to learn more about the source code of PHP_CodeSniffer.
192193

193-
#### Issues marked with "Status: help wanted"
194+
#### Issues Marked with "Status: help wanted"
194195

195196
If you don't know where to start, have a browse through issues marked with the
196197
["Status: help wanted"](https://github.com/PHPCSStandards/PHP_CodeSniffer/labels/Status%3A%20help%20wanted) and/or the
@@ -217,15 +218,37 @@ a duplicate issue/PR.
217218
> in PHP_CodeSniffer and may be better suited to an external standard.
218219
219220

220-
### Getting started
221+
### Finding Something to Work on
222+
223+
The [open issue list][issuelist] is a good place to start :wink:
224+
225+
As a rule of thumb, you can use the following to find an issue to work on:
226+
* Issues which have been triaged already and are not marked as "blocked", "close candidate" or "waiting for opinions".
227+
* Issues which don't have anyone assigned to them (nor a comment in the ticket from someone saying
228+
they are working on the ticket).
229+
* Issues which have no (far in the future) milestone attached.
230+
231+
This largely translates to this [filtered issue list](https://github.com/PHPCSStandards/PHP_CodeSniffer/issues?q=is%3Aopen+is%3Aissue+no%3Aassignee+-label%3A%22Status%3A+triage%22+-label%3A%22Status%3A+close+candidate%22+-label%3A%22Status%3A+blocked%22+-label%3A%22Status%3A+waiting+for+opinions%22+no%3Amilestone+).
232+
233+
You can, of course, filter this list down further by selecting/excluding additional labels, like, for example,
234+
filtering on "Type: bug", "Status: good first issue" or "Status: help wanted".
235+
236+
If you expect the work on the ticket to take a little while, please leave a comment on the ticket to indicate that
237+
you will be working on it. This is a good practice to prevents duplicate work/multiple people working on the same ticket.
238+
239+
When in doubt how to proceed with a ticket, feel free to leave a comment with specific questions and ask for guidance
240+
(if still needed after you have read the rest of the contributing guide).
241+
242+
243+
### Getting Started
221244

222245
1. Fork/clone the repository.
223246
2. Run `composer install`.
224247
3. Create a new branch off the `master` branch to hold your patch.
225248
If there is an open issue associated with your patch, including the issue number in the branch name is good practice.
226249

227250

228-
### While working on a patch
251+
### While Working on a Patch
229252

230253
Please make sure your code conforms to the PHPCS coding standard, is covered by tests and that all the PHP_CodeSniffer
231254
unit tests still pass.
@@ -245,7 +268,7 @@ To help you with this, a number of convenience scripts are available:
245268
N.B.: You can ignore any skipped tests as these are for external tools.
246269

247270

248-
### Writing tests
271+
### Writing Tests
249272

250273
Tests for the PHP_CodeSniffer engine can be found in the `tests/Core` directory.
251274
Tests for individual sniffs can be found in the `src/Standards/[StandardName]/Tests/[Category]/` directory.
@@ -264,7 +287,7 @@ For example, for the sniff named `Generic.NamingConventions.ConstructorName`:
264287
Only lines on which errors/warnings are expected need to be included in the lists. All other lines will automatically
265288
be set to expect no errors and no warnings.
266289

267-
#### Multiple test case files
290+
#### Multiple Test Case Files
268291

269292
At times, one test _case_ file is not enough, for instance when the sniff needs to behave differently depending on whether code
270293
is namespaced or not, or when a sniff needs to check something at the top of a file.
@@ -280,7 +303,7 @@ sequentially like `src/Standards/Generic/Tests/NamingConventions/ConstructorName
280303
The `getErrorList()` and the `getWarningList()` methods will receive an optional `$testFile=''` parameter with the file name
281304
of the file being scanned - `ConstructorNameUnitTest.2.inc` - and should return the appropriate array for each file.
282305

283-
#### Testing fixers
306+
#### Testing Fixers
284307

285308
If a sniff contains errors/warnings which can be auto-fixed, these fixers should also be tested.
286309

@@ -292,7 +315,7 @@ as it is expected to be after the fixer has run.
292315

293316
The test framework will compare the actual fixes made with the expected fixes and will fail the tests if these don't match.
294317

295-
#### Tests related to parse errors/live coding
318+
#### Tests Related to Parse Errors/Live Coding
296319

297320
PHP_CodeSniffer can be, and is, regularly used during live coding via an IDE integration.
298321

@@ -317,7 +340,7 @@ for
317340
```
318341

319342

320-
### Submitting your pull request
343+
### Submitting Your Pull Request
321344

322345
Some guidelines for submitting pull requests (PRs) and improving the chance that your PR will be merged:
323346
* Please keep your PR as small as possible, but no smaller than that.
@@ -333,7 +356,7 @@ Some guidelines for submitting pull requests (PRs) and improving the chance that
333356
Your time is valuable, and we appreciate your willingness to spend it on this project.
334357
However, the maintainers time is also valuable and often, more scarce, so please be considerate of that.
335358

336-
#### Some git best practices
359+
#### Some Git Best Practices
337360

338361
While not strictly required, it is greatly appreciated if you comply with the following git best practices:
339362

@@ -360,16 +383,16 @@ While not strictly required, it is greatly appreciated if you comply with the fo
360383
If your PR has not been reviewed yet, feel free to rebase at will.
361384
Once a PR is under review, consult with the reviewer about rebasing the PR.
362385

363-
#### Final words
386+
#### Final Words
364387

365-
##### Do not violate copyright
388+
##### Do Not Violate Copyright
366389

367390
Only submit a PR with your own original code. Do NOT submit a PR containing code which you have largely copied from
368391
an externally available sniff, unless you wrote said sniff yourself.
369392
Open source does not mean that copyright does not apply.
370393
Copyright infringements will not be tolerated and can lead to you being banned from the repo.
371394

372-
##### Do not submit AI generated PRs
395+
##### Do Not Submit AI Generated PRs
373396

374397
The same goes for (largely) AI-generated PRs. These are not welcome as they will be based on copyrighted code from others
375398
without accreditation and without taking the license of the original code into account, let alone getting permission
@@ -383,3 +406,5 @@ Submitting a (largely) AI-generated PR will lead to you being banned from the re
383406

384407
By contributing code to this repository, you agree to license your code for use under the
385408
[BSD-3-Clause license](https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt).
409+
410+
[issuelist]: https://github.com/PHPCSStandards/PHP_CodeSniffer/issues

0 commit comments

Comments
 (0)