@arianrhodsandlot/oxc-config 1.2.3 → 1.2.5
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/.github/workflows/release.yaml +1 -1
- package/changelog.md +10 -0
- package/oxlintrc.json +2 -0
- package/package.json +1 -1
- package/release-notes.md +1 -1
|
@@ -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@
|
|
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.5] - 2026-06-06
|
|
11
|
+
### Fixed
|
|
12
|
+
- Disable node/callback-return
|
|
13
|
+
|
|
14
|
+
## [1.2.4] - 2026-05-13
|
|
15
|
+
### Fixed
|
|
16
|
+
- Disable react/forbid-component-props
|
|
17
|
+
|
|
10
18
|
## [1.2.3] - 2026-05-08
|
|
11
19
|
### Fixed
|
|
12
20
|
- Adjust explicit-member-accessibility
|
|
@@ -59,6 +67,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
59
67
|
### Added
|
|
60
68
|
- Initial release
|
|
61
69
|
|
|
70
|
+
[1.2.5]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.4...v1.2.5
|
|
71
|
+
[1.2.4]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.3...v1.2.4
|
|
62
72
|
[1.2.3]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.2...v1.2.3
|
|
63
73
|
[1.2.2]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.1...v1.2.2
|
|
64
74
|
[1.2.1]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.0...v1.2.1
|
package/oxlintrc.json
CHANGED
|
@@ -86,6 +86,7 @@
|
|
|
86
86
|
"no-throw-literal": "off",
|
|
87
87
|
"no-undefined": "off",
|
|
88
88
|
"no-use-before-define": "off",
|
|
89
|
+
"node/callback-return": "off",
|
|
89
90
|
"node/no-process-env": "off",
|
|
90
91
|
"oxc/no-async-await": "off",
|
|
91
92
|
"oxc/no-optional-chaining": "off",
|
|
@@ -115,6 +116,7 @@
|
|
|
115
116
|
"react-perf/jsx-no-new-array-as-prop": "off",
|
|
116
117
|
"react-perf/jsx-no-new-function-as-prop": "off",
|
|
117
118
|
"react-perf/jsx-no-new-object-as-prop": "off",
|
|
119
|
+
"react/forbid-component-props": "off",
|
|
118
120
|
"react/iframe-missing-sandbox": "off",
|
|
119
121
|
"react/jsx-filename-extension": [
|
|
120
122
|
"error",
|
package/package.json
CHANGED
package/release-notes.md
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
### Fixed
|
|
2
|
-
-
|
|
2
|
+
- Disable node/callback-return
|