@arianrhodsandlot/oxc-config 1.2.1 → 1.2.3

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
@@ -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.3] - 2026-05-08
11
+ ### Fixed
12
+ - Adjust explicit-member-accessibility
13
+
14
+ ## [1.2.2] - 2026-03-18
15
+ ### Fixed
16
+ - Turn on script sort
17
+
10
18
  ## [1.2.1] - 2026-03-18
11
19
  ### Fixed
12
20
  - Add missing entries
@@ -51,14 +59,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
51
59
  ### Added
52
60
  - Initial release
53
61
 
54
- [1.2.1]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.2.0...v1.2.1
55
- [1.2.0]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.6...v1.2.0
56
- [1.1.6]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.5...v1.1.6
57
- [1.1.5]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.4...v1.1.5
58
- [1.1.4]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.3...v1.1.4
59
- [1.1.3]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.2...v1.1.3
60
- [1.1.2]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.1...v1.1.2
61
- [1.1.1]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.1.0...v1.1.1
62
- [1.1.0]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.0.1...v1.1.0
63
- [1.0.1]: https://github.com/arianrhodsandlot/eslint-config/compare/v1.0.0...v1.0.1
64
- [1.0.0]: https://github.com/arianrhodsandlot/eslint-config/releases/tag/v0.1.0
62
+ [1.2.3]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.2...v1.2.3
63
+ [1.2.2]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.1...v1.2.2
64
+ [1.2.1]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.2.0...v1.2.1
65
+ [1.2.0]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.6...v1.2.0
66
+ [1.1.6]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.5...v1.1.6
67
+ [1.1.5]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.4...v1.1.5
68
+ [1.1.4]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.3...v1.1.4
69
+ [1.1.3]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.2...v1.1.3
70
+ [1.1.2]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.1...v1.1.2
71
+ [1.1.1]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.1.0...v1.1.1
72
+ [1.1.0]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.0.1...v1.1.0
73
+ [1.0.1]: https://github.com/arianrhodsandlot/oxc-config/compare/v1.0.0...v1.0.1
74
+ [1.0.0]: https://github.com/arianrhodsandlot/oxc-config/releases/tag/v0.1.0
package/oxfmtrc.json CHANGED
@@ -12,5 +12,8 @@
12
12
  "enabled": true,
13
13
  "functions": ["classnames", "clsx", "cn", "cva", "cx", "twMerge"]
14
14
  },
15
+ "sortPackageJson": {
16
+ "sortScripts": true
17
+ },
15
18
  "tabWidth": 2
16
19
  }
package/oxlintrc.json CHANGED
@@ -151,6 +151,7 @@
151
151
  ],
152
152
  "typescript/consistent-return": "off",
153
153
  "typescript/explicit-function-return-type": "off",
154
+ "typescript/explicit-member-accessibility": ["error", { "accessibility": "no-public" }],
154
155
  "typescript/explicit-module-boundary-types": "off",
155
156
  "typescript/no-base-to-string": "off",
156
157
  "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.1"
24
+ "version": "1.2.3"
25
25
  }
package/release-notes.md CHANGED
@@ -1,2 +1,2 @@
1
1
  ### Fixed
2
- - Add missing entries
2
+ - Adjust explicit-member-accessibility