Total Complexity | 2 |
Complexity/F | 1 |
Lines of Code | 6 |
Function Count | 2 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | module.exports = function (gulp, paths, plugins) { |
||
|
|||
2 | return function () { |
||
3 | gulp.src([paths.SRC_PATH + 'fonts/**']) |
||
4 | .pipe(gulp.dest(paths.DIST_PATH + 'fonts')); |
||
5 | } |
||
6 | }; |
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.