Skip to content

Commit

Permalink
chore: 87.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Nov 6, 2018
1 parent b9dd40d commit 2a15207
Show file tree
Hide file tree
Showing 6 changed files with 265 additions and 167 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ cache:
matrix:
fast_finish: true
include:
- node_js: '10'
- node_js: '11'
script: npm run $JOB_PART
env: JOB_PART=pretest
- node_js: '11'
script: npm run $JOB_PART
env: JOB_PART=test-only
- node_js: '10'
script: npm run $JOB_PART
env: JOB_PART=test-only
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org). Except add new
rule (it is breaking changed by default).

## 87.0.0 - 2018-11-06

- Added: `jest/prefer-spy-on` rule.
- Changed: disable `require-unicode-regexp` rule.
- Chore: minimum require `eslint-plugin-markdown` version is now `^1.0.0-rc.1`.

## 86.0.0 - 2018-10-29

- Chore: minimum require `eslint-plugin-markdown` version is now `^1.0.0-rc.0`.
Expand Down
2 changes: 1 addition & 1 deletion lib/config/rules/best-practices.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ module.exports = {
// Require use of the second argument for parseInt()
radix: ["error", "always"],
// Enforce the use of `u` flag on RegExp
"require-unicode-regexp": "error",
"require-unicode-regexp": "off",
// Disallow async functions which have no `await` expression
"require-await": "error",
// Requires to declare all vars on top of their containing scope
Expand Down
2 changes: 2 additions & 0 deletions lib/config/rules/jest.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ module.exports = {
"jest/no-test-return-statement": "off",
// Suggest using `expect.assertions()` OR `expect.hasAssertions()`
"jest/prefer-expect-assertions": "off",
// Suggest using `jest.spyOn()`
"jest/prefer-spy-on": "error",
// Suggest using `toStrictEqual()`
"jest/prefer-strict-equal": "off",
// Suggest using `toBeNull()`
Expand Down
Loading

0 comments on commit 2a15207

Please sign in to comment.