Gulp plugin for ux-lint, a linting tool for JavaScript and similar files, version 1.4.0. This plugin integrates ux-lint into Gulp build pipelines, providing both reporting and optional automatic fixing of lint errors. It is Banno/Jack Henry-specific and not actively maintained; the last release was in 2015. Compared to more general linters like ESLint, this plugin is specialized for UX linting and has a narrow use case. It expects a .lintrc configuration file and supports plugin-specific options passed via the options object.
npm install gulp-ux-lintNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows two Gulp tasks: one for reporting lint errors and one for automatically fixing them using the plugin.
Always call lint() with optional options object.
For fix tasks, omit .pipe(gulp.dest()) as the plugin modifies files in place.
Replace with a more actively maintained linter and Gulp plugin.
Ensure a .lintrc file exists in the project root or set extend: false and pass options explicitly.
Run 'npm install --save-dev gulp-ux-lint'
Ensure you use require('gulp-ux-lint') and then call lint() with parentheses.Create a .lintrc file or set { extend: false } and pass options directly.