Skip to content

Instantly share code, notes, and snippets.

@rwos
Last active December 19, 2015 13:59
Show Gist options
  • Save rwos/5965678 to your computer and use it in GitHub Desktop.
Save rwos/5965678 to your computer and use it in GitHub Desktop.
print all available phpcs sniffs
for std in `phpcs -i | sed -e 's/.*are//' -e 's/,\|and//g'`; do phpcs --standard="$std" -vvv /dev/null | grep Registered; done | sort | uniq | awk '{print $2}' | sed -e 's/_Sniffs//' -e 's/_/./g' -e 's/Sniff$//'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment