func FileCommentStyle()

in pkg/comments/config.go [116:123]


func FileCommentStyle(filename string) *CommentStyle {
	for extension, style := range commentStyles {
		if strings.HasSuffix(filename, extension) {
			return &style
		}
	}
	return nil
}