UNPKG
@eform/ng-formio-builder
Version:
latest (2.35.12)
2.35.12
2.35.11
The Angular.js form builder component.
github.com/vbosstech/ngFormBuilder
formioapp/ngFormBuilder
@eform/ng-formio-builder
/
gulp
/
eslint.js
13 lines
(12 loc)
•
295 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
module
.exports =
function
(gulp, plugins)
{
return
function
()
{
return
gulp.src([
'src/**/*.js'
]) .pipe(plugins.eslint({ rules: {
'max-len'
:
0
} })) .pipe(plugins.eslint.
format
()) .pipe(plugins.eslint.failAfterError()); }; };