Last active
August 29, 2015 14:21
-
-
Save xavhan/b743dbb665e80f1f0db9 to your computer and use it in GitHub Desktop.
jscs counter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jscs ./ --config=.jscsrc | cut -d " " -f1 | uniq -c | sort [ | wc -l] | |
jscs ./ --config=.jscsrc #get jscs results | |
| cut -d " " -f1 #keep only the file path | |
| uniq -c #group by file path and count | |
| sort #sort asc | |
################################# | |
| wc #get the number of files to change |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment