eslint-config-beslogic 4.2.1 → 4.2.2

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
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.2.2
4
+
5
+ - Exclude `<select>` and `<textarea>` from `react/jsx-props-no-spreading` as it is very often needed for custom inputs and validation using Higher Order Components
6
+
3
7
  ## 4.2.1
4
8
 
5
9
  - Exclude `<input>` from `react/jsx-props-no-spreading` as it is very often needed for custom inputs and validation using Higher Order Components
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-beslogic",
3
- "version": "4.2.1",
3
+ "version": "4.2.2",
4
4
  "description": "ESLint rules, plugins and configs used at Beslogic",
5
5
  "main": "index.js",
6
6
  "// dependencies": "Run for ourselves when we install dependencies w/o running npm i afterward",
package/react.mjs CHANGED
@@ -147,7 +147,7 @@ export default tseslint.config(
147
147
  "explicitSpread": "ignore",
148
148
  "custom": "ignore",
149
149
  // Very often needed for custom inputs and validation using Higher Order Components
150
- "exceptions": ["input"]
150
+ "exceptions": ["input", "select", "textarea"]
151
151
  }
152
152
  ],
153
153
  "react/prop-types": "off",