You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and investigating those can be a good way to learn more about the source code of PHP_CodeSniffer.
192
193
193
-
#### Issues marked with "Status: help wanted"
194
+
#### Issues Marked with "Status: help wanted"
194
195
195
196
If you don't know where to start, have a browse through issues marked with the
196
197
["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.
217
218
> in PHP_CodeSniffer and may be better suited to an external standard.
218
219
219
220
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
221
244
222
245
1. Fork/clone the repository.
223
246
2. Run `composer install`.
224
247
3. Create a new branch off the `master` branch to hold your patch.
225
248
If there is an open issue associated with your patch, including the issue number in the branch name is good practice.
226
249
227
250
228
-
### While working on a patch
251
+
### While Working on a Patch
229
252
230
253
Please make sure your code conforms to the PHPCS coding standard, is covered by tests and that all the PHP_CodeSniffer
231
254
unit tests still pass.
@@ -245,7 +268,7 @@ To help you with this, a number of convenience scripts are available:
245
268
N.B.: You can ignore any skipped tests as these are for external tools.
246
269
247
270
248
-
### Writing tests
271
+
### Writing Tests
249
272
250
273
Tests for the PHP_CodeSniffer engine can be found in the `tests/Core` directory.
251
274
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`:
264
287
Only lines on which errors/warnings are expected need to be included in the lists. All other lines will automatically
265
288
be set to expect no errors and no warnings.
266
289
267
-
#### Multiple test case files
290
+
#### Multiple Test Case Files
268
291
269
292
At times, one test _case_ file is not enough, for instance when the sniff needs to behave differently depending on whether code
270
293
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
280
303
The `getErrorList()` and the `getWarningList()` methods will receive an optional `$testFile=''` parameter with the file name
281
304
of the file being scanned - `ConstructorNameUnitTest.2.inc` - and should return the appropriate array for each file.
282
305
283
-
#### Testing fixers
306
+
#### Testing Fixers
284
307
285
308
If a sniff contains errors/warnings which can be auto-fixed, these fixers should also be tested.
286
309
@@ -292,7 +315,7 @@ as it is expected to be after the fixer has run.
292
315
293
316
The test framework will compare the actual fixes made with the expected fixes and will fail the tests if these don't match.
294
317
295
-
#### Tests related to parse errors/live coding
318
+
#### Tests Related to Parse Errors/Live Coding
296
319
297
320
PHP_CodeSniffer can be, and is, regularly used during live coding via an IDE integration.
298
321
@@ -317,7 +340,7 @@ for
317
340
```
318
341
319
342
320
-
### Submitting your pull request
343
+
### Submitting Your Pull Request
321
344
322
345
Some guidelines for submitting pull requests (PRs) and improving the chance that your PR will be merged:
323
346
* 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
333
356
Your time is valuable, and we appreciate your willingness to spend it on this project.
334
357
However, the maintainers time is also valuable and often, more scarce, so please be considerate of that.
335
358
336
-
#### Some git best practices
359
+
#### Some Git Best Practices
337
360
338
361
While not strictly required, it is greatly appreciated if you comply with the following git best practices:
339
362
@@ -360,16 +383,16 @@ While not strictly required, it is greatly appreciated if you comply with the fo
360
383
If your PR has not been reviewed yet, feel free to rebase at will.
361
384
Once a PR is under review, consult with the reviewer about rebasing the PR.
362
385
363
-
#### Final words
386
+
#### Final Words
364
387
365
-
##### Do not violate copyright
388
+
##### Do Not Violate Copyright
366
389
367
390
Only submit a PR with your own original code. Do NOT submit a PR containing code which you have largely copied from
368
391
an externally available sniff, unless you wrote said sniff yourself.
369
392
Open source does not mean that copyright does not apply.
370
393
Copyright infringements will not be tolerated and can lead to you being banned from the repo.
371
394
372
-
##### Do not submit AI generated PRs
395
+
##### Do Not Submit AI Generated PRs
373
396
374
397
The same goes for (largely) AI-generated PRs. These are not welcome as they will be based on copyrighted code from others
375
398
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
383
406
384
407
By contributing code to this repository, you agree to license your code for use under the
0 commit comments