Skip to content

Commit

Permalink
Merge pull request #202 from marcofugaro/master
Browse files Browse the repository at this point in the history
Removed redundant 'use strict' since it comes standard with es6
  • Loading branch information
jakemmarsh authored Jun 29, 2016
2 parents e863c0c + deb1350 commit 464bdb2
Show file tree
Hide file tree
Showing 30 changed files with 0 additions and 60 deletions.
2 changes: 0 additions & 2 deletions gulp/config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

export default {

browserPort: 3000,
Expand Down
2 changes: 0 additions & 2 deletions gulp/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import fs from 'fs';
import gulp from 'gulp';
import onlyScripts from './util/scriptFilter';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/browserSync.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import config from '../config';
import url from 'url';
import browserSync from 'browser-sync';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/browserify.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import gulp from 'gulp';
import gulpif from 'gulp-if';
import source from 'vinyl-source-stream';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/clean.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import config from '../config';
import gulp from 'gulp';
import del from 'del';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/deploy.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import gulp from 'gulp';

gulp.task('deploy', ['prod'], function() {
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/development.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import gulp from 'gulp';
import runSequence from 'run-sequence';

Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/eslint.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import config from '../config';
import gulp from 'gulp';
import eslint from 'gulp-eslint';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/fonts.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import config from '../config';
import changed from 'gulp-changed';
import gulp from 'gulp';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/gzip.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import config from '../config';
import gulp from 'gulp';
import gzip from 'gulp-gzip';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/images.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import config from '../config';
import changed from 'gulp-changed';
import gulp from 'gulp';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/production.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import gulp from 'gulp';
import runSequence from 'run-sequence';

Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/protractor.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import config from '../config';
import testServer from '../util/testServer';
import gulp from 'gulp';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/styles.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import config from '../config';
import gulp from 'gulp';
import gulpif from 'gulp-if';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import gulp from 'gulp';
import runSequence from 'run-sequence';

Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/unit.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import config from '../config';
import path from 'path';
import gulp from 'gulp';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/views.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import config from '../config';
import gulp from 'gulp';
import merge from 'merge-stream';
Expand Down
2 changes: 0 additions & 2 deletions gulp/tasks/watch.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import config from '../config';
import gulp from 'gulp';

Expand Down
2 changes: 0 additions & 2 deletions gulp/util/bundleLogger.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import gutil from 'gulp-util';
import prettyHrtime from 'pretty-hrtime';

Expand Down
2 changes: 0 additions & 2 deletions gulp/util/handleErrors.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import gutil from 'gulp-util';
import notify from 'gulp-notify';

Expand Down
2 changes: 0 additions & 2 deletions gulp/util/scriptFilter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import path from 'path';

// Filters out non .js files. Prevents
Expand Down
2 changes: 0 additions & 2 deletions gulp/util/testServer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import express from 'express';

export default function testServer({port, dir}) {
Expand Down
2 changes: 0 additions & 2 deletions test/e2e/example_spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/*global browser, by */

'use strict';

describe('E2E: Example', function() {

beforeEach(function() {
Expand Down
2 changes: 0 additions & 2 deletions test/e2e/routes_spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/*global browser */

'use strict';

describe('E2E: Routes', function() {

it('should have a working home route', function() {
Expand Down
2 changes: 0 additions & 2 deletions test/karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

const istanbul = require('browserify-istanbul');
const isparta = require('isparta');

Expand Down
2 changes: 0 additions & 2 deletions test/unit/constants_spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

describe('Unit: Constants', function() {

let constants;
Expand Down
2 changes: 0 additions & 2 deletions test/unit/controllers/example_spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

describe('Unit: ExampleCtrl', function() {

let ctrl;
Expand Down
2 changes: 0 additions & 2 deletions test/unit/directives/example_spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/* global module */

'use strict';

describe('Unit: ExampleDirective', function() {

let element;
Expand Down
2 changes: 0 additions & 2 deletions test/unit/filters/example_spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

describe('Unit: ExampleFilter', function() {

let $filter;
Expand Down
2 changes: 0 additions & 2 deletions test/unit/services/example_spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

describe('Unit: ExampleService', function() {

let http, service;
Expand Down

0 comments on commit 464bdb2

Please sign in to comment.