-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add validate module.yaml file #56
base: main
Are you sure you want to change the base?
Conversation
d7557a8
to
ca5b0a7
Compare
|
||
_, err := os.Stat(filepath.Join(modulePath, ModuleConfigFilename)) | ||
if err != nil { | ||
return lintRuleErrorsList |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are we sure, that we need to ignore all stat errors?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What proposals will there be?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return lintRuleErrorsList | |
_, err := os.Stat(filepath.Join(modulePath, ModuleConfigFilename)) | |
if errors.Is(err, os.ErrNotExist) { | |
return lintRuleErrorsList | |
} | |
if err != nil { | |
lintRuleErrorsList.Add(errors.NewLintRuleError( | |
ID, | |
moduleName, | |
moduleName, | |
nil, | |
"Cannot stat file %q: %s", | |
ModuleConfigFilename, err.Error(), | |
)) | |
} |
fixed: #52