Why Coding Standards Should Not Be Part of CI

Why do you use coding standards? To standardize the design of your code so that any contributor will produce somewhat similar PHP code.

Where do we use it? In CI pipelines on every pull-request, locally in a command line or within PHPStorm. Now take these 3 places and drop coding standard from them.

"What?" Wait a sec. We'll get to that.

Do you use using PHPStorm plugins for coding standards? I argued it's a waste of time and that you should move to CI. In recent months, I conclude that even coding standard in CI is rather limiting for daily work. We have to wait for CI feedback, process the feedback, and pay for CI work-minutes.

I believe we can get rid of this technical debt. Why even care? Because faster CI feedback is, the addictive is coding against it. We'll get to that.


What do we talk about when we say "coding standards"?

1. Coding Standard is about How Code Looks

If we run coding standard on our code, the only thing that should change is its design:

-   class    SomeClass { }
+class SomeClass
+{
+}

Their features and logic should remain the same.

2. Coding Standard is Deterministic

Deterministic means that each input has exactly one output.

E.g., you have a car. If you turn its steering wheel to the left, the car will turn left. If you turn it right, the car will turn right.

If turning the steering wheel in one direction does not produce the same output in the same conditions, we know that car is broken, or we're too drunk. We should stop driving in both cases as it can have non-deterministic consequences.

The same applies to coding standards. If we say A → we must add B.

-const ONE = 'two', TWO = 'one';
+const ONE = 'two';
+const TWO = 'one';
-$items = array(
+$items = [
     // ...
-);
+];

We can't say: "we don't use old arrays → we use anything else". That's not a coding standard but an unfinished opinion.

3. Coding Standard Rules must be Fixable

Let's get back to the car. The steering wheel is deterministic. Turn it left → car turns left, turn it right → car turns right. If we turn left and turns right, we know the car paradigm is broken and take it into the car repair shop. They already know how the car should behave without us telling them. They know how to fix it, no need to discuss car standards.

Same applies for coding standard:

-$items = array(
+$items = [
     // ...
-);
+];

That's why every coding standard rule should be fixable by default. Actually, PHP CS Fixer is built on this premise, and each rule is a fixer by default. Good job!

If it's impossible to come up with a fixable version, a PHPStan rule should handle this case.


What happens if we apply points 1, 2, and 3 to our coding standard set? It handles code design, it is deterministic, and it is fixable. That looks like work for robots...

Why do we put Coding Standards into CI?

Well, one reason is self-evident - status quo, we're used to that.

Also, we want the code to look the same on every merge. Apart from that, there is not much to say.

How Coding Standard in CI Wastes Time?

If we have a project with 15 pull-request a day and coding standard run in CI for every pull-request, that's at least 15 runs a day. One run can take 3 mins on average. That's 45 minutes. What happens when a coding standard fails? We have to check it manually, fix it, and push the commit into the branch.

The circle repeats. That's at least 90 minutes of waiting time wasted a day for your whole team. Also, now robots are controlling humans. Our CI is adding extra work to developers, and developers must silently obey to make CI robots happy. Dooms Day already?


Let's get back to the primary purpose of coding standards. Our PHP code should look the same.

Could you think of a better solution that does not waste 90 minutes a day and turn us into slaves but keeps our PHP code looks nice and pretty?


Happy coding!




Do you learn from my contents or use open-souce packages like Rector every day?
Consider supporting it on GitHub Sponsors. I'd really appreciate it!