You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Windows it is not uncommon to setup Git so that it automatically checks-out files with CRLF line endings and commit them with LF. It is the default option when installing Git.
Because of those line endings, go fmt in the current setup in the Makefile will always report a difference to expected formatting and fail the build:
On Windows it is not uncommon to setup Git so that it automatically checks-out files with CRLF line endings and commit them with LF. It is the default option when installing Git.
Because of those line endings,
go fmt
in the current setup in the Makefile will always report a difference to expected formatting and fail the build:mattermost-plugin-starter-template/Makefile
Line 51 in b7165a0
It may be worth to either:
-w
flag ofgo fmt
, which will actually change the file during build and fix the formattingThe text was updated successfully, but these errors were encountered: