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
Exclude file mode / permissions by default. Similar to the exclusion of other number oriented functions like Date.
As file permissions are typically represented as numbers like in the following example, the linter could ignore that.
My current workaround is a //nolint statement, which makes the code actually less clear to read.
Short summary
Exclude file mode / permissions by default. Similar to the exclusion of other number oriented functions like
Date
.As file permissions are typically represented as numbers like in the following example, the linter could ignore that.
My current workaround is a
//nolint
statement, which makes the code actually less clear to read.Steps to reproduce the behavior
_, err := os.OpenFile(outputFile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o644)
This is not a bug, but a proposal to change the behaviour and seams to affect all version of go-mnd
The text was updated successfully, but these errors were encountered: