Skip to content
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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Conversation

juev
Copy link
Member

@juev juev commented Jan 10, 2025

fixed: #52

@juev juev requested a review from yalosev January 10, 2025 16:06
@juev juev self-assigned this Jan 10, 2025
@juev juev force-pushed the feature/validate-module-yaml branch from d7557a8 to ca5b0a7 Compare January 10, 2025 16:07

_, err := os.Stat(filepath.Join(modulePath, ModuleConfigFilename))
if err != nil {
return lintRuleErrorsList

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?

Copy link
Member Author

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?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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(),
))
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add module.yaml validation
2 participants