3.4. コードの簡素化
gofmt
フォーマットツールを使用して、コードを簡素化できます。
手順
特定のパス内のコードを簡素化するには、以下を実行します。
Red Hat Enterprise Linux 7 の場合:
$ scl enable go-toolset-1.19 'gofmt -s <code_path>'
-
<code_path>
は、簡素化するコードへのパスに置き換えます。
-
Red Hat Enterprise Linux 8 の場合:
$ gofmt -s <code_path>
-
<code_path>
は、簡素化するコードへのパスに置き換えます。
-
Red Hat Enterprise Linux 9 の場合:
$ gofmt -s <code_path>
-
<code_path>
は、簡素化するコードへのパスに置き換えます。
-
変更を適用するには、以下を実行します。
Red Hat Enterprise Linux 7 の場合:
$ scl enable go-toolset-1.19 'gofmt -w <code_path>'
-
<code_path>
は、フォーマットするコードへのパスに置き換えます。
-
Red Hat Enterprise Linux 8 の場合:
$ gofmt -w <code_path>
-
<code_path>
は、フォーマットするコードへのパスに置き換えます。
-
Red Hat Enterprise Linux 9 の場合:
$ gofmt -w <code_path>
-
<code_path>
は、フォーマットするコードへのパスに置き換えます。
-