-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCODEOWNERS
More file actions
53 lines (40 loc) · 1.34 KB
/
CODEOWNERS
File metadata and controls
53 lines (40 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# CODEOWNERS for HDF5 Go Library
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
#
# This file defines individuals or teams responsible for code in this repository.
# Code owners are automatically requested for review when someone opens a pull request
# that modifies code they own.
# Default owner for everything in the repo
* @kolkov
# Core HDF5 implementation - Critical parsing and reading logic
/internal/core/ @kolkov
/internal/structures/ @kolkov
/internal/utils/ @kolkov
# Public API files - Breaking changes require careful review
/file.go @kolkov
/group.go @kolkov
# Command-line utilities
/cmd/ @kolkov
# Examples - Reference implementations
/examples/ @kolkov
# Test data and generators - Validation and test file creation
/testdata/ @kolkov
# Documentation - Keep up to date with code changes
*.md @kolkov
/docs/ @kolkov
# GitHub configuration and CI/CD
/.github/ @kolkov
# Code quality and linting configuration
/.golangci.yml @kolkov
/Makefile @kolkov
# Tests - Ensure coverage and reliability
*_test.go @kolkov
/internal/testing/ @kolkov
# Release management - Version control and changelog
/CHANGELOG.md @kolkov
/ROADMAP.md @kolkov
# Contributing guidelines
/CONTRIBUTING.md @kolkov
# Go module files - Dependency management
/go.mod @kolkov
/go.sum @kolkov