@jakebailey/dprint-plugin-gofumpt 0.0.14 → 0.0.16
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/README.md +2 -18
- package/metadata/LICENSES +1 -1
- package/package.json +7 -7
- package/plugin.wasm +0 -0
package/README.md
CHANGED
|
@@ -22,24 +22,7 @@ After adding the plugin, configure the plugin in `dprint.json`:
|
|
|
22
22
|
"modulePath": "github.com/myorg/myproject"
|
|
23
23
|
},
|
|
24
24
|
"plugins": [
|
|
25
|
-
"
|
|
26
|
-
]
|
|
27
|
-
}
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
Alternatively, the plugin is published to npm and can be referenced with an
|
|
31
|
-
[`npm:` specifier](https://dsherret.dev/posts/dprint-0.55/) (requires dprint
|
|
32
|
-
0.55 or newer):
|
|
33
|
-
|
|
34
|
-
```sh
|
|
35
|
-
dprint add npm:@jakebailey/dprint-plugin-gofumpt
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
```jsonc
|
|
39
|
-
{
|
|
40
|
-
// ...
|
|
41
|
-
"plugins": [
|
|
42
|
-
"npm:@jakebailey/dprint-plugin-gofumpt@0.0.14"
|
|
25
|
+
"npm:@jakebailey/dprint-plugin-gofumpt@0.0.16"
|
|
43
26
|
]
|
|
44
27
|
}
|
|
45
28
|
```
|
|
@@ -66,6 +49,7 @@ plugin versions correspond to which `gofumpt` versions.
|
|
|
66
49
|
|
|
67
50
|
| Plugin Version | gofumpt Version |
|
|
68
51
|
| -------------- | ------------------------------------- |
|
|
52
|
+
| v0.0.15+ | v0.11.1-0.20260820074422-a2bc6805583d |
|
|
69
53
|
| v0.0.14+ | v0.11.0 |
|
|
70
54
|
| v0.0.12+ | v0.10.1-0.20260531213040-cc84354298ea |
|
|
71
55
|
| v0.0.10+ | v0.10.0 |
|
package/metadata/LICENSES
CHANGED
|
@@ -59,7 +59,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
59
59
|
|
|
60
60
|
|
|
61
61
|
================================================================================
|
|
62
|
-
mvdan.cc/gofumpt v0.11.0
|
|
62
|
+
mvdan.cc/gofumpt v0.11.1-0.20260820074422-a2bc6805583d
|
|
63
63
|
BSD-3-Clause
|
|
64
64
|
================================================================================
|
|
65
65
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jakebailey/dprint-plugin-gofumpt",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"description": "Wasm module for dprint-plugin-gofumpt, a dprint plugin for formatting Go code with gofumpt.",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@changesets/cli": "^
|
|
35
|
+
"@changesets/cli": "^3.0.1",
|
|
36
36
|
"@dprint/formatter": "^0.5.1",
|
|
37
37
|
"@dprint/json": "0.23.0",
|
|
38
|
-
"@dprint/markdown": "0.
|
|
38
|
+
"@dprint/markdown": "0.23.2",
|
|
39
39
|
"@dprint/typescript": "0.96.1",
|
|
40
|
-
"@types/node": "^26.
|
|
41
|
-
"binaryen": "^
|
|
42
|
-
"dprint": "^0.
|
|
40
|
+
"@types/node": "^26.4.0",
|
|
41
|
+
"binaryen": "^132.0.0",
|
|
42
|
+
"dprint": "^0.56.1",
|
|
43
43
|
"dprint-plugin-yaml": "0.6.0",
|
|
44
|
-
"hereby": "^1.15.
|
|
44
|
+
"hereby": "^1.15.2",
|
|
45
45
|
"typescript": "^7.0.2"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
package/plugin.wasm
CHANGED
|
Binary file
|