2021-07-27 14:10:16 +02:00
|
|
|
Why use named groups only to never use any of them later on in the code?
|
|
|
|
|
|
|
|
This rule raises issues every time named groups are:
|
|
|
|
|
|
|
|
* defined but never called anywhere in the code through their name;
|
2021-07-29 18:03:39 +02:00
|
|
|
* defined but called elsewhere in the code by their number instead;
|
|
|
|
* referenced while not defined.
|