-
Notifications
You must be signed in to change notification settings - Fork 24
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
Add missing filesystem function exclsuions #178
Add missing filesystem function exclsuions #178
Conversation
Argh, duplicate of #177 ... |
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_chgrp" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_chmod" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_chown" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_fclose" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_file_put_contents" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_fopen" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_fputs" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_fread" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_fsockopen" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_fwrite" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_is_writable" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_is_writeable" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_mkdir" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_pfsockopen" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_readfile" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_rmdir" /> | ||
<exclude name="WordPress.WP.AlternativeFunctions.file_system_operations_touch" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This whole list should be removed (maintenance overhead) as the exclude
for file_system_operations
on line 148 does the exact same thing already (just more efficiently).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, good to know.
Fixing in #177
This PR updates the custom PHPCS ruleset to exclude all current filesystem functions to the list of exclusions.