Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaurav0 committed Oct 17, 2018
1 parent f165b1c commit 5a6d217
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -107,6 +107,7 @@ module.exports = function(defaults) {

</details>


Usage
------------------------------------------------------------------------------

Expand Down
6 changes: 5 additions & 1 deletion node-tests/.eslintrc.js
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
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 5a6d217

Please sign in to comment.