Skip to content

Commit

Permalink
docs(README): update no-expect-in-setup-teardown warning level
Browse files Browse the repository at this point in the history
  • Loading branch information
alecxe authored and Nicolas Fernandez committed Dec 2, 2016
1 parent a6768c5 commit 0cebbad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Rule | Recommended | Options
[no-assign-spyon][] | 0 |
[no-unsafe-spy][] | 1 |
[no-global-setup][] | 2 |
[no-expect-in-setup-teardown][] | 0, `'expect()'` | expectation function names
[no-expect-in-setup-teardown][] | 1, `'expect()'` | expectation function names
For example, using the recommended configuration, the `no-focused-tests` rule
is enabled and will cause ESLint to throw an error (with an exit code of `1`)
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = {
'jasmine/no-assign-spyon': 0,
'jasmine/no-unsafe-spy': 1,
'jasmine/no-global-setup': 2,
'jasmine/no-expect-in-setup-teardown': 0
'jasmine/no-expect-in-setup-teardown': 1
}
}
}
Expand Down

0 comments on commit 0cebbad

Please sign in to comment.