Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaurav0 committed Oct 16, 2018
1 parent 86e861a commit f21e191
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion node-tests/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

module.exports = {
root: true,
extends: 'eslint:recommended',
extends: ['eslint:recommended'],
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module'
},
env: {
node: true,
mocha: true
Expand Down
1 change: 1 addition & 0 deletions node-tests/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ var execSync = require('child_process').execSync;
var chromeVersion = execSync('google-chrome --product-version').toString();
var browser = 'Chrome ' + chromeVersion.split('.').slice(0, 2).join('.');
var path = require('path');
var Promise = require('rsvp').Promise;

describe('ember-cli-eslint', function() {
this.timeout(60000);
Expand Down

0 comments on commit f21e191

Please sign in to comment.