eslint-config-vylda-vanilla-react 5.0.0 → 5.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 +6 -1
- package/package.json +2 -1
- package/rules/react.mjs +1 -1
package/Changelog.md
CHANGED
|
@@ -4,7 +4,12 @@ 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
|
-
## [5.
|
|
7
|
+
## [5.1.0] - 2026-01-05
|
|
8
|
+
### Changed
|
|
9
|
+
- Rules
|
|
10
|
+
- react/jsx-no-leaked-render off [Vilda Lipold]
|
|
11
|
+
|
|
12
|
+
## [5.0.0] - 2025-12-31
|
|
8
13
|
### Added
|
|
9
14
|
- some missing comments for rules [Vilda Lipold]
|
|
10
15
|
### Removed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-vylda-vanilla-react",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "Eslint rules for JS React projects",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@eslint/config-inspector": "^1.4.2",
|
|
41
|
+
"baseline-browser-mapping": "^2.9.11",
|
|
41
42
|
"husky": "^9.1.7"
|
|
42
43
|
}
|
|
43
44
|
}
|
package/rules/react.mjs
CHANGED
|
@@ -235,7 +235,7 @@ const config = [
|
|
|
235
235
|
|
|
236
236
|
// Prevent problematic leaked values from being rendered
|
|
237
237
|
// https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/jsx-no-leaked-render.md
|
|
238
|
-
'react/jsx-no-leaked-render': '
|
|
238
|
+
'react/jsx-no-leaked-render': 'off',
|
|
239
239
|
|
|
240
240
|
// Prevent usage of unwrapped JSX strings
|
|
241
241
|
// https://github.com/jsx-eslint/eslint-plugin-react/blob/master/docs/rules/jsx-no-literals.md
|