Skip to content

Commit

Permalink
fix: fix lint task
Browse files Browse the repository at this point in the history
  • Loading branch information
3cp committed May 3, 2020
1 parent 156fb6e commit 23ffc87
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions skeleton/cli-bundler/aurelia_project/tasks/lint.ext
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
import /* @if feat.typescript */* as /* @endif */gulp from 'gulp';
import /* @if feat.typescript */* as /* @endif */eslint from 'gulp-eslint';
import /* @if feat.typescript */* as /* @endif */project from '../aurelia.json';
// @if feat.babel
import gulp from 'gulp';
import eslint from 'gulp-eslint';
import project from '../aurelia.json';
// @endif
// @if feat.typescript
import * as gulp from 'gulp';
import * as eslint from 'gulp-eslint';
import * as project from '../aurelia.json';
// @endif

export default function lint() {
return gulp.src(project.transpiler.source)
Expand Down

0 comments on commit 23ffc87

Please sign in to comment.