Skip to content

Commit

Permalink
chore(release): 124.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Mar 23, 2020
1 parent 0c2aeaf commit c04a1b4
Show file tree
Hide file tree
Showing 49 changed files with 1,085 additions and 991 deletions.
20 changes: 10 additions & 10 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
extends: [
"./lib/config/script.js",
"./lib/config/esnext.js",
"./lib/config/node.js"
"./lib/config/node.js",
],
overrides: [
// Tests
Expand All @@ -15,20 +15,20 @@ module.exports = {
rules: {
"node/no-unsupported-features/es-syntax": [
"error",
{ ignores: ["modules", "dynamicImport"] }
{ ignores: ["modules", "dynamicImport"] },
],

// Allow to use `console` (example - `mocking`)
"no-console": "off"
}
"no-console": "off",
},
},

// Markdown
{
extends: [
// Documentation files can contain ECMA and CommonJS modules
"./lib/config/dirty.js",
"./lib/config/markdown.js"
"./lib/config/markdown.js",
],
files: ["**/*.md"],
rules: {
Expand All @@ -39,10 +39,10 @@ module.exports = {
"node/no-unpublished-import": "off",
"node/no-unsupported-features/es-syntax": [
"error",
{ ignores: ["modules", "dynamicImport"] }
]
}
}
{ ignores: ["modules", "dynamicImport"] },
],
},
},
],
root: true
root: true,
};
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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).

## 124.0.0 - 2020-03-23

- Changed: minimum required `eslint-plugin-jest` version is now `23.8.2`.
- Changed: minimum required `eslint-plugin-markdown` version is now `1.0.2`.
- Changed: minimum required `eslint-plugin-react` version is now `7.19.0`.
- Changed: minimum required `eslint-plugin-unicorn` version is now `17.2.0`.

## 123.0.0 - 2020-02-20

- Changed: the `unicorn/prefer-replace-all` rule is disabled (due Node.js is unsupported that)
Expand Down
Loading

0 comments on commit c04a1b4

Please sign in to comment.