Skip to content

Commit

Permalink
chore(release): 117.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Dec 3, 2019
1 parent 88d1463 commit 01efe41
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 60 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ matrix:
- node_js: "12"
script: npm run $JOB_PART
env: JOB_PART=pretest
- node_js: "13"
script: npm run $JOB_PART
env: JOB_PART=test:only
- node_js: "12"
script: npm run $JOB_PART
env: JOB_PART=test:only
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@ 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).

## 116.0.0 - 2019-11.25
## 117.0.0 - 2019-12-03

- Added: `unicorn/prefer-trim-start-end` rule.
- Added: `unicorn/prefer-negative-index` rule.
- Changed: minimum required `eslint` version is now `6.7.2`.
- Changed: minimum required `eslint-plugin-jest` version is now `23.1.1`.
- Changed: minimum required `eslint-plugin-react` version is now `7.17.0`.
- Changed: minimum required `eslint-plugin-unicorn` version is now `14.0.1`.

## 116.0.0 - 2019-11-25

- Added: `grouped-accessor-pairs` rule.
- Added: `no-constructor-return` rule.
Expand Down
4 changes: 4 additions & 0 deletions lib/config/rules/unicorn.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ module.exports = {
"unicorn/prefer-flat-map": "error",
// Prefer `.includes()` over `.indexOf()` when checking for existence or non-existence
"unicorn/prefer-includes": "error",
// Prefer negative index over .length - index for {String,Array,TypedArray}#slice() and Array#splice()
"unicorn/prefer-negative-index": "error",
// Prefer `append` over `appendChild`.
// "unicorn/prefer-node-append": "off",
// Prefer `remove` over `parentNode.removeChild` and `parentElement.removeChild`.
Expand All @@ -113,6 +115,8 @@ module.exports = {
"unicorn/prefer-starts-ends-with": "error",
// Prefer `textContent` over `innerText`
// "unicorn/prefer-text-content": "off",
// Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`
"unicorn/prefer-trim-start-end": "error",
// Maybe enable in future
// Enforce throwing `TypeError` in type checking conditions.
"unicorn/prefer-type-error": "off",
Expand Down
121 changes: 73 additions & 48 deletions package-lock.json

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

21 changes: 10 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-itgalaxy",
"version": "116.0.0",
"version": "117.0.0",
"description": "Itgalaxy org's ESLint rules and configs.",
"keywords": [
"eslint",
Expand All @@ -26,28 +26,27 @@
"node": ">= 10.13.0"
},
"dependencies": {
"13": "0.0.0",
"confusing-browser-globals": "^1.0.9"
},
"devDependencies": {
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-find-rules": "^3.4.0",
"eslint-plugin-ava": "^9.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-markdown": "^1.0.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-unicorn": "^13.0.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-unicorn": "^14.0.1",
"husky": "^3.1.0",
"lint-staged": "^9.4.3",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
Expand All @@ -60,18 +59,18 @@
},
"peerDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.7.1",
"eslint": "^6.7.2",
"eslint-plugin-ava": "^9.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-markdown": "^1.0.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-unicorn": "^13.0.0"
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-unicorn": "^14.0.1"
},
"scripts": {
"lint:check-rules": "eslint-find-rules --unused lib/config/all.js",
Expand Down

0 comments on commit 01efe41

Please sign in to comment.