func validator_IssueNoIDs()

in internal/changelog/linter.go [77:83]


func validator_IssueNoIDs(entry Entry) error {
	if len(entry.LinkedIssue) == 0 {
		return fmt.Errorf("changelog entry: %s has no issue id", entry.File.Name)
	}

	return nil
}