-
-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Array declaration spacing sniff #1456
Comments
I think it should be solved by standard sniffs because it's constructor call. |
@kukulich ok, so it looks like what i am missing is actually some Array sniff, like we have |
There are sniff in PHPCS itself, like |
@kukulich I dont know, I have this sniff enabled and it doesnt complain about stuff like #[ORM\Index(columns: ['phone_prefix',
'sed',
])] |
@michnovka The sniff probably does not have the implementation :) However I think it should be it's job. |
@kukulich I have found this rule does what I need: <rule ref="WordPress.Arrays.ArrayDeclarationSpacing">
<exclude name="WordPress.Arrays.ArrayDeclarationSpacing.NoSpaceAfterArrayOpener"/>
<exclude name="WordPress.Arrays.ArrayDeclarationSpacing.NoSpaceBeforeArrayCloser"/>
</rule> |
@kukulich the WP sniffs are very opinionated and change (as the name suggests This sniff also does so many things:
Slevomat CS on the other hands has an approach to name sniffs properly and have one sniff to one thing only. Would you be interested in bringing this sniff as multiple sniffs under Slevomat CS? |
Yes, it's ok to add such sniff - but check if the sniff does not already exist in PHPCS itself. There are some sniffs like |
@kukulich seems that
So lets add this one, I would call it |
Also missing
So that might be another sniff Id create. I will not have time for this until mid November, so lets use that time to finish discussion and specs here. maybe somebody will find the sniffs burried somewhere in the Squiz CS. |
We should prepare list of missing features so we can create a propose about the sniffs. |
Checks that associative arrays are multi-line. => DOES NOT EXIST Check for no space between the parentheses of an empty array => therefore what we miss is Checks that associative arrays are multi-line. so that $array = ['some_key',];
$arrayAssoc = ['some_key' => 'some_value',]; would be invalid, and it would be fixed to $array = ['some_key',];
$array = [
'some_key' => 'some_value',
]; I propose: |
Looks good to me. Just to be consistent with other sniff, it should probably be |
This looks wrong to me and currently there are no sniffs targeting this.
What do you think about
SlevomatCodingStandard.Attributes.RequireAttributeParamsInline
?Or we can have a sniff that enforces
btw, is
SlevomatCodingStandard.Arrays.TrailingArrayComma
applicable here? EDIT: it does apply and does work as expectedThe text was updated successfully, but these errors were encountered: