Irrelevant for Go, because this rule goes against the recommendation in https://golang.org/doc/effective_go.html#formatting[Effective Go] (_"Use spaces only if you must."_).
Fixing the visual size of the indentations for everyone makes it difficult to read the code for people who need a size adapted to their needs or their context.
Indeed, the advantage of tabulation is precisely to make it possible to adapt the readability of the code according to the constraints of the user.
This is an fundamental accessibility criterion.
In addition, this allows a group of developers, some of whom prefer large indentations, and others, more restrained indentations, to work on the same code base (each configuring according to his needs, on his IDE, the visual size of the desired intentation).
Here is an article motivating the deprecation of this rule: https://dev.to/alexandersandberg/why-we-should-default-to-tabs-instead-of-spaces-for-an-accessible-first-environment-101f
In order not to go against readability and accessibility aspects, while avoiding problems related to alignment (different concept from indentation), it is preferable to favor "[smart tabs](https://www.emacswiki.org/emacs/SmartTabs) indentation".