-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCODEOWNERS
More file actions
71 lines (51 loc) · 1.67 KB
/
CODEOWNERS
File metadata and controls
71 lines (51 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# CODEOWNERS for coregex
# 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
# SIMD primitives - Critical performance code with assembly
/simd/ @kolkov
# Literal extraction - Pattern analysis
/literal/ @kolkov
# Prefilter system - SIMD multi-pattern matching
/prefilter/ @kolkov
# NFA engine - Thompson's construction and PikeVM
/nfa/ @kolkov
# DFA engines - Lazy DFA with on-demand determinization
/dfa/ @kolkov
# Meta engine - Strategy selection and orchestration
/meta/ @kolkov
# Internal utilities - Sparse sets and data structures
/internal/ @kolkov
# Public API files - Breaking changes require careful review
/regex.go @kolkov
# Examples and benchmarks
/example_test.go @kolkov
/benchmark/ @kolkov
# Test data and test generators
/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
# Release management - Version control and changelog
/CHANGELOG.md @kolkov
/STATUS.md @kolkov
# Contributing guidelines
/CONTRIBUTING.md @kolkov
# Go module files - Dependency management
/go.mod @kolkov
/go.sum @kolkov
# Scripts
/scripts/ @kolkov
# Development documentation - Architecture and kanban
/docs/dev/ @kolkov