# gulp-buddy.js **Repository Path**: mirrors_Semigradsky/gulp-buddy.js ## Basic Information - **Project Name**: gulp-buddy.js - **Description**: Gulp plugin for running buddy.js - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gulp-[buddy.js](https://github.com/danielstjules/buddy.js) > Gulp plugin for running buddy.js ## Install ```sh $ npm install --save-dev gulp-buddy.js ``` ## Usage ```js var gulp = require('gulp'); var buddyjs = require('gulp-buddy.js'); gulp.task('default', function () { return gulp.src('app.js') .pipe(buddyjs({ disableIgnore: true, reporter: 'detailed' })); }); ``` ### Options #### detectObjects Type: `Boolean` Default value: `false` Detect object expressions and properties. #### ignore Type: `Array` Default value: `[0, 1]` Numbers that will be ignored in the processing. #### disableIgnore Type: `Boolean` Default value: `false` Disables the ignore list. #### enforceConst Type: `Boolean` Default value: `false` Enforce literals to be declared with the `const` keyword. #### noColor Type: `Boolean` Default value: `false` Disables colors #### reporter Type: `String` Default value: `'simple'` Reporter to use. Options available are `'simple'`, `'json'` and `'detailed'`.