@homestuck/prettier-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 +14 -0
- package/index.js +6 -6
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.2.3](https://github.com/homestuck/configs/compare/prettier-config@v1.2.2...prettier-config@v1.2.3) (2026-01-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **prettier:** Deps to peerDeps ([#32](https://github.com/homestuck/configs/issues/32)) ([a421c82](https://github.com/homestuck/configs/commit/a421c823c798935be7afabc1b6ef6ac84f162121))
|
|
9
|
+
|
|
10
|
+
## [1.2.2](https://github.com/homestuck/configs/compare/prettier-config@v1.2.1...prettier-config@v1.2.2) (2025-12-16)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **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))
|
|
16
|
+
|
|
3
17
|
## [1.2.1](https://github.com/homestuck/configs/compare/prettier-config@v1.2.0...prettier-config@v1.2.1) (2025-12-16)
|
|
4
18
|
|
|
5
19
|
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** @type {import("prettier").Config} */
|
|
1
|
+
/** @type { import("prettier").Config } */
|
|
2
2
|
const config = {
|
|
3
3
|
arrowParens: 'always',
|
|
4
4
|
bracketSameLine: true,
|
|
@@ -26,11 +26,11 @@ const config = {
|
|
|
26
26
|
importOrderTypeScriptVersion: '5.9.3',
|
|
27
27
|
jsonRecursiveSort: true,
|
|
28
28
|
plugins: [
|
|
29
|
-
'@ianvs/prettier-plugin-sort-imports',
|
|
30
|
-
'@prettier/plugin-xml',
|
|
31
|
-
'prettier-plugin-packagejson',
|
|
32
|
-
'prettier-plugin-sort-json',
|
|
33
|
-
'prettier-plugin-tailwindcss',
|
|
29
|
+
import.meta.resolve('@ianvs/prettier-plugin-sort-imports'),
|
|
30
|
+
import.meta.resolve('@prettier/plugin-xml'),
|
|
31
|
+
import.meta.resolve('prettier-plugin-packagejson'),
|
|
32
|
+
import.meta.resolve('prettier-plugin-sort-json'),
|
|
33
|
+
import.meta.resolve('prettier-plugin-tailwindcss'),
|
|
34
34
|
],
|
|
35
35
|
printWidth: 80,
|
|
36
36
|
proseWrap: 'preserve',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@homestuck/prettier-config",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Baseline Prettier config used and maintained by Homestuck Inc., et al.",
|
|
6
6
|
"repository": {
|
|
@@ -14,21 +14,23 @@
|
|
|
14
14
|
"exports": {
|
|
15
15
|
".": "./index.js"
|
|
16
16
|
},
|
|
17
|
-
"main": "
|
|
17
|
+
"main": "index.js",
|
|
18
18
|
"prettier": "@homestuck/prettier-config",
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
|
|
21
21
|
"@prettier/plugin-xml": "3.4.2",
|
|
22
|
-
"prettier": "
|
|
23
|
-
"prettier-plugin-
|
|
24
|
-
"prettier-plugin-sort-json": "4.1.1",
|
|
22
|
+
"prettier-plugin-packagejson": "2.5.21",
|
|
23
|
+
"prettier-plugin-sort-json": "4.2.0",
|
|
25
24
|
"prettier-plugin-tailwindcss": "0.7.2"
|
|
26
25
|
},
|
|
27
26
|
"devDependencies": {
|
|
28
|
-
"@types/node": "24.10.
|
|
27
|
+
"@types/node": "^24.10.8",
|
|
29
28
|
"typescript": "5.9.3",
|
|
30
29
|
"@homestuck/tsconfig": "1.1.0"
|
|
31
30
|
},
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"prettier": "3.7.4"
|
|
33
|
+
},
|
|
32
34
|
"scripts": {
|
|
33
35
|
"clean": "rm -rf .turbo node_modules",
|
|
34
36
|
"format": "prettier --check . --ignore-path ../../.gitignore --ignore-path ./.prettierignore",
|