Skip to content

Commit

Permalink
Fix test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
philipwalton committed Jul 8, 2017
1 parent b244e6e commit 5626690
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ module.exports = {
// 'no-duplicate-imports': 0,
'no-new-symbol': 2, // eslint:recommended
// 'no-restricted-imports': 0,
'no-this-before-super': 2, // eslint:recommended
'no-this-before-super': 2, // eslint:recommended
// 'no-useless-computed-key': 0,
// 'no-useless-constructor': 0,
// 'no-useless-rename': 0,
Expand Down
3 changes: 2 additions & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ const repoFiles = [

// Use the rules defined in this repo to test against.
const eslintOpts = {
envs: ['node', 'es6'],
useEslintrc: false,
envs: ['node', 'es6'],
parserOptions: {ecmaVersion: 2017},
rules: conf.rules,
};

Expand Down

0 comments on commit 5626690

Please sign in to comment.