Last active
December 3, 2017 15:49
The default values for .bithoundrc that customizes bitHound project analysis. If you like the defaults and want to make additions, keep the contents of this file and add your values. Commit this file directly to your project's root and bitHound will pick it up on the next round of analysis.
This file contains 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
{ | |
"ignore": [ | |
"**/deps/**", | |
"**/node_modules/**", | |
"**/thirdparty/**", | |
"**/third_party/**", | |
"**/vendor/**", | |
"**/**-min-**", | |
"**/**-min.**", | |
"**/**.min.**", | |
"**/**jquery.?(ui|effects)-*.*.?(*).?(cs|j)s", | |
"**/**jquery-*.*.?(*).?(cs|j)s", | |
"**/prototype?(*).js", | |
"**/mootools*.*.*.js", | |
"**/dojo.js", | |
"**/MochiKit.js", | |
"**/yahoo-*.js", | |
"**/yui*.js", | |
"**/ckeditor*.js", | |
"**/tiny_mce*.js", | |
"**/tiny_mce/?(langs|plugins|themes|utils)/**", | |
"**/MathJax/**", | |
"**/shBrush*.js", | |
"**/shCore.js", | |
"**/shLegacy.js", | |
"**/modernizr.custom.?(*).js", | |
"**/knockout-*.*.*.debug.js", | |
"**/extjs/*.js", | |
"**/extjs/*.xml", | |
"**/extjs/*.txt", | |
"**/extjs/*.html", | |
"**/extjs/*.properties", | |
"**/extjs/.sencha", | |
"**/extjs/docs/**", | |
"**/extjs/builds/**", | |
"**/extjs/cmd/**", | |
"**/extjs/examples/**", | |
"**/extjs/locale/**", | |
"**/extjs/packages/**", | |
"**/extjs/plugins/**", | |
"**/extjs/resources/**", | |
"**/extjs/src/**", | |
"**/extjs/welcome/**", | |
"bower_components/**" | |
], | |
"test": [ | |
"**/test/**", | |
"**/tests/**", | |
"**/spec/**", | |
"**/specs/**" | |
] | |
} |
BitHound should look for *test*.*
files in the root as well. It's a very common pattern on microlibraries to have no folders.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
By default bitHound ignores the files and folders in the
ignore
section and does not analyze them. It will also look for the folders in thetest
section so that test-file specific analysis is run on those files.You can customize more analysis related to dependencies. Check out our other Gists.