Fix 'Drupal.Commenting.InlineComment.InvalidEndChar' coding standard

Created on 5 May 2016, almost 9 years ago
Updated 27 July 2024, 8 months ago

Follow-up to ๐Ÿ“Œ Fix 'Drupal.Commenting.InlineComment.SpacingAfter' coding standard Active

Part of ๐ŸŒฑ [meta] Fix PHP coding standards in core Active .

Approach

We are testing coding standards with PHP CodeSniffer, using the Drupal coding standards from the Coder module. Both of these packages are not installed in Drupal core. We need to do a couple of steps in order to download and configure them so we can run a coding standards check.

Step 1: Add the coding standard to the whitelist

Every coding standard is identified by a "sniff". For example, an imaginary coding standard that would require all llamas to be placed inside a square bracket fence would be called the "Drupal.AnimalControlStructure.BracketedFence sniff". There are dozens of such coding standards, and to make the work easier we have started by only whitelisting the sniffs that pass. For the moment all coding standards that are not yet fixed are simply skipped during the test.

Open the file core/phpcs.xml.dist and add a line for the sniff of this ticket. The sniff name is in the issue title. Make sure your patch will include the addition of this line.

Step 2: Install PHP CodeSniffer and the ruleset from the Coder module

Both of these packages are not installed by default in Drupal core, so we need to download them. This can be done with Composer, from the root folder of your Drupal installation:

$ composer require drupal/coder squizlabs/php_codesniffer
$ ./vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer

Once you have installed the phpcs package, you can list all the sniffs available to you like this:

$ ./vendor/bin/phpcs --standard=Drupal -e

This will give you a big list of sniffs, and the Drupal-based ones should be present.

Step 3: Prepare the phpcs.xml file

To speed up the testing you should make a copy of the file phpcs.xml.dist (in the core/ folder) and save it as phpcs.xml. This is the configuration file for PHP CodeSniffer.

We only want this phpcs.xml file to specify the sniff we're interested in. So we need to remove all the rule items, and add only our own sniff's rule. Rule items look like this:

<rule ref="Drupal.Commenting.InlineComment.InvalidEndChar"/>

Remove all of them, and add only the sniff from this issue title. This will make sure that our tests run quickly, and are not going to contain any output from unrelated sniffs.

Step 4: Run the test

Now you are ready to run the test! From within the core/ folder, run the following command to launch the test:

$ cd core/
$ ../vendor/bin/phpcs -p

This takes a couple of minutes. The -p flag shows the progress, so you have a bunch of nice dots to look at while it is running.

Step 5: Fix the failures

When the test is complete it will present you a list of all the files that contain violations of your sniff, and the line numbers where the violations occur. You could fix all of these manually, but thankfully phpcbf can fix many of them. You can call phpcbf like this:

$ ../vendor/bin/phpcbf

This will fix the errors in place. You can then make a diff of the changes using git. You can also re-run the test with phpcs and determine if that fixed all of them.

๐Ÿ“Œ Task
Status

Postponed

Version

11.0 ๐Ÿ”ฅ

Component
Otherย  โ†’

Last updated about 23 hours ago

Created by

๐Ÿ‡ซ๐Ÿ‡ทFrance andypost

Live updates comments and jobs are added and updated live.
  • Coding standards

    It involves compliance with, or the content of coding standards. Requires broad community agreement.

Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • First commit to issue fork.
  • Status changed to Needs review 8 months ago
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    No longer postponed. I rebased onto 11.x

  • Status changed to RTBC 8 months ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Was a large MR to review but was easy. If anyone curious what the extra deletion is from

    core/modules/pgsql/src/Driver/Database/pgsql/Connection.php deleted a commented out elseif line

  • Status changed to Needs work 8 months ago
  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom longwave UK

    Some feedback where the change makes the comment misleading - generally where we are listing punctuation in some way - plus some nitpicks and some weird cases where only some comments appear to be taken into account (especially in TaxonomyFieldAllTermsTest and EntityQueryTest).

  • Assigned to quietone
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    I set this to NR for initial feedback because all I did was create and MR for the latest patch. I didn't expect it to become RTBC. Now that I look more closely the first thing I see is that the sniff is not enabled!

    I will assign to myself and clean this up.

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    When autofixing a full stop is added to cspell ignore lines

    // cSpell:ignore Tร‰XT รครถรผรฅรธhello aouaohello aeoeueaohello Pรกcรช.

    which results in spelling errors.
    core/modules/file/tests/src/Unit/SanitizeNameTest.php:102:13 - Unknown word (Pรกcรช)

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    Found ๐Ÿ“Œ Improve the cspell exception in Drupal.Commenting.InlineComment.InvalidEndChar Active which explains why only some cspell lines are failing. The sniff ignores lines where cspell is all lower case.

  • Issue was unassigned.
  • Status changed to Postponed 8 months ago
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    But there are other problems with the sniff. Therefor postponing on the Coder issue.

  • Pipeline finished with Success
    7 months ago
    Total: 3032s
    #281377
  • Pipeline finished with Success
    6 months ago
    Total: 182s
    #294393
  • Pipeline finished with Failed
    3 months ago
    Total: 744s
    #385095
  • Pipeline finished with Canceled
    3 months ago
    Total: 964s
    #385149
  • Pipeline finished with Failed
    3 months ago
    Total: 751s
    #385161
  • Pipeline finished with Success
    3 months ago
    Total: 1503s
    #385177
  • Pipeline finished with Canceled
    3 months ago
    Total: 139s
    #387345
  • Pipeline finished with Failed
    3 months ago
    Total: 1219s
    #387347
  • Pipeline finished with Failed
    3 months ago
    Total: 648s
    #387371
  • Pipeline finished with Failed
    3 months ago
    Total: 1404s
    #387377
  • Pipeline finished with Success
    3 months ago
    Total: 771s
    #387425
  • Pipeline finished with Canceled
    3 months ago
    Total: 111s
    #387482
  • Pipeline finished with Canceled
    3 months ago
    Total: 450s
    #387484
  • Pipeline finished with Canceled
    3 months ago
    Total: 266s
    #387493
  • Pipeline finished with Success
    3 months ago
    Total: 969s
    #387497
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone
  • Pipeline finished with Failed
    about 2 months ago
    Total: 103s
    #414095
  • Pipeline finished with Success
    about 1 month ago
    Total: 820s
    #427577
  • Pipeline finished with Skipped
    about 1 month ago
    #427599
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    No longer postponed.

    I rebased and fixed the remaining.

  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia lavanyatalwar

    Reviewing this.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Been over 5 days so going to pick

    Changes appear to be pretty 1 to 1. The extra deletions coming from core/lib/Drupal/Core/DrupalKernel.php.

    Previous threads still appear to be open, 1-2 seem relevant

    If you are another contributor eager to jump in, please allow the previous poster at least 48 hours to respond to feedback first, so they have the opportunity to finish what they started!

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    Responded to longwave's feedback.

  • The Needs Review Queue Bot โ†’ tested this issue. It no longer applies to Drupal core. Therefore, this issue status is now "Needs work".

    This does not mean that the patch necessarily needs to be re-rolled or the MR rebased. Read the Issue Summary, the issue tags and the latest discussion here to determine what needs to be done.

    Consult the Drupal Contributor Guide โ†’ to find step-by-step guides for working with issues.

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    Rebase

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium borisson_ Mechelen, ๐Ÿ‡ง๐Ÿ‡ช

    I think this looks good. It does what it is supposed to do.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom jonathan1055

    There are eight unresolved threads in the MR. So I don't think this should be set to RTBC until those are addressed and closed. In contrib MRs you can set push rules to prevent merging when there are open threads, but I'm not sure if that is done in the Core workflow. But in anycase those comments should be checked, and closed if done. But I don't they all can be closed yet.

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium borisson_ Mechelen, ๐Ÿ‡ง๐Ÿ‡ช

    I think on every open comment there was a change already, but the comment was still left open.
    Only your comment is still open, so I will put it back to needs work

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom jonathan1055

    Thanks but many of the comments were not addressed, even if there was a later change. I've been through the entire list of chnages, and opened some more threads. It would be great if those who opened the earlier ones could check their own and close them when solved. Then we can really use the open threads as the driver to finally get this issue fixed.

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    @jonathan1055, thanks for the detailed review!

    I agree it would help if reviewers would resolve comments. Thanks.

  • Pipeline finished with Success
    22 days ago
    Total: 278s
    #446742
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Tried to resolve the threads but some wasn't 100% sure on.

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom jonathan1055

    Excellent, you've reduced it from 24 unresolved threads to just 9.

    One odd thing I commented on is why it appears that the 'Docblock' sniff is being excluded here?
    https://git.drupalcode.org/project/drupal/-/merge_requests/505#note_477884

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone

    There are different views here about how to format lists in in-line comments. So, I am going to make a child issue to fix the easy one. That child won't be able to enable the sniff but it will reduce the noise on this MR.

  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone
  • Pipeline finished with Failed
    16 days ago
    Total: 156s
    #450956
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone
Production build 0.71.5 2024