eslint-config-vylda-typescript 6.0.3 → 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 CHANGED
@@ -4,6 +4,17 @@ 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
+
14
+ ## [6.0.4] - 2026-01-02
15
+ ### Added
16
+ - nonTsConfigFilesRule to getConfig function
17
+
7
18
  ## [6.0.3] - 2026-01-02
8
19
  ### Updated
9
20
  - Enhance nonTsConfigFiles [Vilda Lipold]
package/index.js CHANGED
@@ -128,6 +128,7 @@ const getConfig = (
128
128
  ...tsConfigsWithFiles,
129
129
  ...barrelsConfigsWithFiles,
130
130
  ...ignores,
131
+ nonTsConfigFilesRule,
131
132
  ];
132
133
 
133
134
  return eslintConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-vylda-typescript",
3
- "version": "6.0.3",
3
+ "version": "6.1.0",
4
4
  "description": "Eslint Typescript rules for JS and TS vanilla projects",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -654,8 +654,7 @@ const config = [
654
654
  allowNullableNumber: true,
655
655
  allowNullableObject: true,
656
656
  allowNullableString: true,
657
- allowNumber: false,
658
- allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing: false,
657
+ allowNumber: true,
659
658
  allowString: true,
660
659
  },
661
660
  ],
@@ -451,7 +451,7 @@ const rules = {
451
451
  'error',
452
452
  {
453
453
  after: true,
454
- before: false,
454
+ before: true,
455
455
  overrides: {
456
456
  colon: {
457
457
  after: true,