Remove coffee from files

This commit is contained in:
Blade Barringer
2015-11-11 20:40:26 -06:00
parent 3a13a5ee2c
commit 7559f14f4d
19 changed files with 2 additions and 1257 deletions

View File

@@ -1,5 +1,3 @@
import 'coffee-script';
import mongoose from 'mongoose';
import autoinc from 'mongoose-id-autoinc';
import logging from '../website/src/libs/logging';

View File

@@ -2,7 +2,7 @@ import gulp from 'gulp';
import eslint from 'gulp-eslint';
import _ from 'lodash';
// TODO remove once we upgrade to lodash 3
// TODO remove once we upgrade to lodash 3
const defaultsDeep = _.partialRight(_.merge, _.defaults);
const shared = {
@@ -19,7 +19,6 @@ const shared = {
};
gulp.task('lint:client', () => {
// Ignore .coffee files
return gulp.src(['./website/public/js/**/*.js'])
.pipe(eslint(defaultsDeep({
env: {
@@ -31,7 +30,6 @@ gulp.task('lint:client', () => {
});
gulp.task('lint:server', () => {
// Ignore .coffee files
return gulp.src(['./website/src/**/*.js'])
.pipe(eslint(defaultsDeep({
env: {
@@ -42,4 +40,4 @@ gulp.task('lint:server', () => {
.pipe(eslint.failAfterError());
});
gulp.task('lint', ['lint:server', 'lint:client']);
gulp.task('lint', ['lint:server', 'lint:client']);