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

Commit f21e191

Browse files
committed
fix linting errors
1 parent 86e861a commit f21e191

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

node-tests/.eslintrc.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
module.exports = {
44
root: true,
5-
extends: 'eslint:recommended',
5+
extends: ['eslint:recommended'],
6+
parserOptions: {
7+
ecmaVersion: 2017,
8+
sourceType: 'module'
9+
},
610
env: {
711
node: true,
812
mocha: true

node-tests/test.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ var execSync = require('child_process').execSync;
1212
var chromeVersion = execSync('google-chrome --product-version').toString();
1313
var browser = 'Chrome ' + chromeVersion.split('.').slice(0, 2).join('.');
1414
var path = require('path');
15+
var Promise = require('rsvp').Promise;
1516

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

0 commit comments

Comments
 (0)