diff --git a/CHANGELOG.md b/CHANGELOG.md index f4dc8c7..9d5f2d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.6.1 (November 22, 2020) + +- Disable `no-null` rule in base config + ## 0.6.0 (November 22, 2020) - Update dependencies to support TypeScript 4, ESLint 7 and Prettier 2 diff --git a/config-base.js b/config-base.js index def52d0..0b6746f 100644 --- a/config-base.js +++ b/config-base.js @@ -108,6 +108,7 @@ module.exports = { 'unicorn/no-abusive-eslint-disable': 'off', 'unicorn/no-fn-reference-in-iterator': 'off', 'unicorn/no-nested-ternary': 'warn', + 'unicorn/no-null': 'off', 'unicorn/no-process-exit': 'off', 'unicorn/no-reduce': 'warn', 'unicorn/prefer-optional-catch-binding': 'warn', diff --git a/package.json b/package.json index 560fc31..1a044c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-neo", - "version": "0.6.0", + "version": "0.6.1", "description": "Official Neo Financial ESLint configuration", "main": "index.js", "author": "Neo Financial Engineering ",