Skip to content

Commit 88a5f11

Browse files
chore(release): 99.0.0
1 parent 39f341f commit 88a5f11

File tree

7 files changed

+704
-978
lines changed

7 files changed

+704
-978
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
This project adheres to [Semantic Versioning](http://semver.org). Except add new
66
rule (it is breaking changed by default).
77

8+
## 99.0.0 - 2019-03-25
9+
10+
- Added: `jest/no-empty-title` rule.
11+
- Chore: minimum require `eslint-plugin-ava` version is now `^6.0.0`.
12+
- Changed: disable `react/self-closing-comp` (in favor prettier).
13+
- Changed: disable `linebreak-style` (in favor prettier).
14+
815
## 98.0.0 - 2019-02-01
916

1017
- Added: `jest/prefer-todo` rule.

lib/config/rules/best-practices.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,8 @@ module.exports = {
188188
// Disallow use of the `with` statement
189189
// Disable in favor `no-restricted-syntax` rule
190190
"no-with": "off",
191+
// Enforce using named capture group in regular expression
192+
"prefer-named-capture-group": "off",
191193
// require using Error objects as Promise rejection reasons
192194
"prefer-promise-reject-errors": ["error", { allowEmptyReject: false }],
193195
// Require use of the second argument for parseInt()

lib/config/rules/jest.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ module.exports = {
1313
"jest/no-alias-methods": "error",
1414
// Disallow disabled tests
1515
"jest/no-disabled-tests": "error",
16+
// Disallow disabled tests
17+
"jest/no-empty-title": "error",
1618
// Disallow focused tests
1719
"jest/no-focused-tests": "error",
1820
// Disallow setup and teardown hooks
@@ -58,5 +60,7 @@ module.exports = {
5860
// Enforce valid `expect()` usage
5961
"jest/valid-expect": "error",
6062
// Suggest using `test.todo`
61-
"jest/prefer-todo": "error"
63+
"jest/prefer-todo": "error",
64+
// Suggest using `toBeCalledWith()` OR `toHaveBeenCalledWith()`
65+
"jest/prefer-called-with": "off"
6266
};

lib/config/rules/react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ module.exports = {
127127
// Enforce ES5 or ES6 class for returning value in render function
128128
"react/require-render-return": "error",
129129
// Prevent extra closing tags for components without children
130-
"react/self-closing-comp": "error",
130+
"react/self-closing-comp": "off",
131131
// Enforce component methods order
132132
"react/sort-comp": [
133133
"error",

lib/config/rules/stylistic-issues.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ module.exports = {
8989
// Enforce position of line comments
9090
"line-comment-position": "off",
9191
// Disallow mixed "LF" and "CRLF" as linebreaks
92-
"linebreak-style": ["error", "unix"],
92+
"linebreak-style": "off",
9393
// Enforces empty lines around comments
9494
"lines-around-comment": "off",
9595
// Require or disallow an empty line between class members

0 commit comments

Comments
 (0)