eslint-config-vylda-vanilla-react 4.0.0 → 4.0.1

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,10 @@ 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
+ ## [4.0.1] - 2025-11-01
8
+ ### Fixed
9
+ - @stylistic/jsx-curly-spacing rule configuration [Vilda Lipold]
10
+
7
11
  ## [4.0.0] - 2025-11-01
8
12
  ### Added
9
13
  - Rules (some rules are not officially documented)
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-vylda-vanilla-react",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Eslint rules for JS React projects",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -39,7 +39,9 @@ const config = [
39
39
  {
40
40
  allowMultiline: true,
41
41
  children: true,
42
- objectLiterals: 'never',
42
+ spacing: {
43
+ objectLiterals: 'never',
44
+ },
43
45
  when: 'never',
44
46
  },
45
47
  ],