We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Sometimes certain core assets are deregistered/dequeued which break Query Monitor, which adds an extra step during debugging to track that down.
Dependencies are:
dashicons
jquery
It'd be good to have a sniff that warns for specific assets that we do not recommend removing.
wp_deregister_style( 'dashicons' );
wp_dequeue_script( 'jquery' );
wp_dequeue_style( 'not_dashicons' );
wp_dequeue_script( 'not_jquery' );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What problem would the enhancement address for VIP?
Sometimes certain core assets are deregistered/dequeued which break Query Monitor, which adds an extra step during debugging to track that down.
Dependencies are:
dashicons
https://github.com/Automattic/vip-go-mu-plugins-built/blob/d38a2b0e4a1be875302942783cfe49f7f343e226/query-monitor/dispatchers/Html.php#L187-L192jquery
https://github.com/Automattic/vip-go-mu-plugins-built/blob/d38a2b0e4a1be875302942783cfe49f7f343e226/query-monitor/dispatchers/Html.php#L170-L199Describe the solution you'd like
It'd be good to have a sniff that warns for specific assets that we do not recommend removing.
What code should be reported as a violation?
What code should not be reported as a violation?
The text was updated successfully, but these errors were encountered: