@arianrhodsandlot/oxc-config 1.2.2 → 1.2.4

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.
@@ -17,7 +17,7 @@ jobs:
17
17
  - run: npx -y @arianrhodsandlot/release-kit release-notes --version ${{ github.ref_name }}
18
18
  - run: npm version from-git --no-git-tag-version
19
19
  - run: npm publish --no-git-checks --access=public
20
- - uses: softprops/action-gh-release@v2
20
+ - uses: softprops/action-gh-release@v3
21
21
  if: startsWith(github.ref, 'refs/tags/')
22
22
  with:
23
23
  body_path: ./release-notes.md
package/changelog.md CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.2.4] - 2026-05-13
11
+ ### Fixed
12
+ - Disable react/forbid-component-props
13
+
14
+ ## [1.2.3] - 2026-05-08
15
+ ### Fixed
16
+ - Adjust explicit-member-accessibility
17
+
10
18
  ## [1.2.2] - 2026-03-18
11
19
  ### Fixed
12
20
  - Turn on script sort
@@ -55,6 +63,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55
63
  ### Added
56
64
  - Initial release
57
65
 
66
+ [1.2.4]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.3...v1.2.4
67
+ [1.2.3]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.2...v1.2.3
58
68
  [1.2.2]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.1...v1.2.2
59
69
  [1.2.1]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.0...v1.2.1
60
70
  [1.2.0]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.6...v1.2.0
package/oxlintrc.json CHANGED
@@ -115,6 +115,7 @@
115
115
  "react-perf/jsx-no-new-array-as-prop": "off",
116
116
  "react-perf/jsx-no-new-function-as-prop": "off",
117
117
  "react-perf/jsx-no-new-object-as-prop": "off",
118
+ "react/forbid-component-props": "off",
118
119
  "react/iframe-missing-sandbox": "off",
119
120
  "react/jsx-filename-extension": [
120
121
  "error",
@@ -151,6 +152,7 @@
151
152
  ],
152
153
  "typescript/consistent-return": "off",
153
154
  "typescript/explicit-function-return-type": "off",
155
+ "typescript/explicit-member-accessibility": ["error", { "accessibility": "no-public" }],
154
156
  "typescript/explicit-module-boundary-types": "off",
155
157
  "typescript/no-base-to-string": "off",
156
158
  "typescript/no-confusing-void-expression": "off",
package/package.json CHANGED
@@ -21,5 +21,5 @@
21
21
  },
22
22
  "repository": "arianrhodsandlot/oxc-config",
23
23
  "type": "module",
24
- "version": "1.2.2"
24
+ "version": "1.2.4"
25
25
  }
package/release-notes.md CHANGED
@@ -1,2 +1,2 @@
1
1
  ### Fixed
2
- - Turn on script sort
2
+ - Disable react/forbid-component-props