From f65e97b7090304e6b8d2bd640acb5acd211adc41 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 19 Aug 2023 18:19:15 +0000 Subject: [PATCH] Version Packages --- .changeset/rude-pigs-sparkle.md | 19 ------------------- CHANGELOG.md | 22 ++++++++++++++++++++++ package.json | 2 +- 3 files changed, 23 insertions(+), 20 deletions(-) delete mode 100644 .changeset/rude-pigs-sparkle.md diff --git a/.changeset/rude-pigs-sparkle.md b/.changeset/rude-pigs-sparkle.md deleted file mode 100644 index 1a080bc3..00000000 --- a/.changeset/rude-pigs-sparkle.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -'@nullvoxpopuli/eslint-configs': patch ---- - -```js -'@typescript-eslint/prefer-optional-chain': 'off', -``` - -we typically want this one enabled, -but in a major release of typescript-eslint, -it began to require that tsconfig.json be passed -which, means we need to disable the lint. -in a future release of `@nullvoxpopuli/eslint-configs`, -we can conditionally add the tsconfig-needing lints -if a tsconfig path is passed, -or a local tsconfig.json is present and detected - -this capability will align with the upcoming eslint 9 -config in the next major of eslint-configs diff --git a/CHANGELOG.md b/CHANGELOG.md index a678041f..3e33d4b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # @nullvoxpopuli/eslint-configs +## 3.2.1 + +### Patch Changes + +- [#496](https://github.com/NullVoxPopuli/eslint-configs/pull/496) [`bca6895`](https://github.com/NullVoxPopuli/eslint-configs/commit/bca6895f5f7a38e21dd2d9e1eb716e93d3ab0bdc) Thanks [@NullVoxPopuli](https://github.com/NullVoxPopuli)! - ```js + '@typescript-eslint/prefer-optional-chain': 'off', + + ``` + + we typically want this one enabled, + but in a major release of typescript-eslint, + it began to require that tsconfig.json be passed + which, means we need to disable the lint. + in a future release of `@nullvoxpopuli/eslint-configs`, + we can conditionally add the tsconfig-needing lints + if a tsconfig path is passed, + or a local tsconfig.json is present and detected + + this capability will align with the upcoming eslint 9 + config in the next major of eslint-configs + ``` + ## 3.2.0 ### Minor Changes diff --git a/package.json b/package.json index 47379cfc..b307ed5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nullvoxpopuli/eslint-configs", - "version": "3.2.0", + "version": "3.2.1", "description": "eslint configs for the NullVoxPopuli's projects", "main": "index.js", "type": "commonjs",