Skip to content

Commit

Permalink
Add no-large-snapshots rule for jest. Bump for v7 (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
tclindner authored Jul 26, 2019
1 parent 39e81dc commit 9d443f7
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 32 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Added

### Changed

### Fixed

### Removed

## [7.0.0] - 2019-07-25
### Added
* [`eslint-plugin-jest`](https://github.com/jest-community/eslint-plugin-jest) with the following rules:

* [`jest/no-alias-methods`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/no-alias-methods.md)
Expand All @@ -19,6 +28,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
* [`consistent-test-it`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/consistent-test-it.md)
* [`no-commented-out-tests`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/no-commented-out-tests.md)
* [`no-empty-title`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/no-empty-title.md)
* [`no-large-snapshots`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/no-large-snapshots.md)
* [`no-test-callback`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/no-test-callback.md)
* [`no-test-return-statement`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/no-test-return-statement.md)
* [`no-truthy-falsy`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/no-truthy-falsy.md)
Expand All @@ -28,6 +38,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
* [`require-tothrow-message`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/require-tothrow-message.md)
* [`prefer-todo`](https://github.com/jest-community/eslint-plugin-jest/blob/master/docs/rules/prefer-todo.md)


### Changed

### Fixed
Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ module.exports = {
],
'jest/no-commented-out-tests': 'error',
'jest/no-empty-title': 'error',
'jest/no-large-snapshots': 'error',
'jest/no-test-callback': 'error',
'jest/no-test-return-statement': 'error',
'jest/no-truthy-falsy': 'error',
Expand Down
43 changes: 12 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-tc",
"version": "6.5.0",
"version": "7.0.0",
"description": "ESLint shareable config for JavaScript projects",
"keywords": [
"eslintconfig",
Expand Down

0 comments on commit 9d443f7

Please sign in to comment.