Goコードフォーマッター (gofmtスタイル)
Go Code Formatter (gofmt-style) Go’s philosophy is clear: there’s one right way to format code, and it’s gofmt. Every Go project uses the same formatting — tabs for indentation, opening braces on the same line, sorted imports — and that consistency is one of the language’s greatest strengths. But when you’re editing Go outside your IDE, reviewing snippets in a browser, or cleaning up code from documentation, you don’t always have gofmt handy. This tool applies gofmt-style formatting to your Go code entirely client-side. Paste your code, get it formatted. No installation, no server processing, no data leaving your browser. How to Use Paste your Go source code into the ...
ツールを試す »