Skip to content

Commit

Permalink
chore: make no-unused-vars eslint rule error (#5598)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored and cpojer committed Feb 17, 2018
1 parent 430aebe commit 3a86707
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ module.exports = {
// https://github.com/benmosher/eslint-plugin-import/issues/645
'import/order': 0,
'no-console': 0,
'no-unused-vars': 2,
'prettier/prettier': [
2,
{
Expand Down
1 change: 0 additions & 1 deletion packages/jest-cli/src/search_source.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import type {Glob, GlobalConfig, Path} from 'types/Config';
import type {Test} from 'types/TestRunner';
import type {ChangedFilesPromise} from 'types/ChangedFiles';

import fs from 'fs';
import path from 'path';
import micromatch from 'micromatch';
import DependencyResolver from 'jest-resolve-dependencies';
Expand Down

0 comments on commit 3a86707

Please sign in to comment.