eslint-config-vylda-typescript 6.0.4 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Changelog.md +7 -0
- package/package.json +1 -1
- package/rules/defaultTs.mjs +1 -2
- package/rules/stylisticTs.mjs +1 -1
package/Changelog.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to this component will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [6.1.0] - 2026-01-05
|
|
8
|
+
### Updated
|
|
9
|
+
- allow number in strict-boolean-expressions rule [Vilda Lipold]
|
|
10
|
+
- @stylistic/type-annotation-spacing rule to have space before arrow [Vilda Lipold]
|
|
11
|
+
### Removed
|
|
12
|
+
- deprecated option `allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing` in strict-boolean-expressions rule [Vilda Lipold]
|
|
13
|
+
|
|
7
14
|
## [6.0.4] - 2026-01-02
|
|
8
15
|
### Added
|
|
9
16
|
- nonTsConfigFilesRule to getConfig function
|
package/package.json
CHANGED
package/rules/defaultTs.mjs
CHANGED
|
@@ -654,8 +654,7 @@ const config = [
|
|
|
654
654
|
allowNullableNumber: true,
|
|
655
655
|
allowNullableObject: true,
|
|
656
656
|
allowNullableString: true,
|
|
657
|
-
allowNumber:
|
|
658
|
-
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing: false,
|
|
657
|
+
allowNumber: true,
|
|
659
658
|
allowString: true,
|
|
660
659
|
},
|
|
661
660
|
],
|