@homestuck/prettier-config 1.2.1 → 1.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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.2](https://github.com/homestuck/configs/compare/prettier-config@v1.2.1...prettier-config@v1.2.2) (2025-12-16)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **prettier:** Re-adding explicit JSDoc typedefs for plugin deps ([#23](https://github.com/homestuck/configs/issues/23)) ([9ec0506](https://github.com/homestuck/configs/commit/9ec050670861195eb38185f44d637fd775c75eb0))
9
+
3
10
  ## [1.2.1](https://github.com/homestuck/configs/compare/prettier-config@v1.2.0...prettier-config@v1.2.1) (2025-12-16)
4
11
 
5
12
 
package/index.js CHANGED
@@ -1,4 +1,8 @@
1
- /** @type {import("prettier").Config} */
1
+ /** @typedef {import("prettier").Config} PrettierConfig */
2
+ /** @typedef {import("@ianvs/prettier-plugin-sort-imports").PluginConfig} SortImportsConfig */
3
+ /** @typedef {import("@prettier/plugin-xml")} XMLConfig */
4
+
5
+ /** @type { PrettierConfig | SortImportsConfig | XMLConfig } */
2
6
  const config = {
3
7
  arrowParens: 'always',
4
8
  bracketSameLine: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homestuck/prettier-config",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "private": false,
5
5
  "description": "Baseline Prettier config used and maintained by Homestuck Inc., et al.",
6
6
  "repository": {