forked from open-edge-platform/anomalib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitmessage
More file actions
46 lines (46 loc) · 1.79 KB
/
Copy pathgitmessage
File metadata and controls
46 lines (46 loc) · 1.79 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
# <type>[optional scope]: <description>
#
# [optional body]
#
# [optional footer]
#
# The commit contains the following structural elements, to communicate
# intent to the consumers of your library:
#
# fix: a commit of the type fix patches a bug in your codebase
# (this correlates with PATCH in semantic versioning).
#
# feat: a commit of the type feat introduces a new feature to the codebase
# (this correlates with MINOR in semantic versioning).
#
# BREAKING CHANGE: a commit that has the text BREAKING CHANGE: at the beginning of
# its optional body or footer section introduces a breaking API change
# (correlating with MAJOR in semantic versioning).
# A BREAKING CHANGE can be part of commits of any type.
#
# Others: commit types other than fix: and feat: are allowed,
# like chore:, docs:, style:, refactor:, perf:, test:, and others.
#
# We also recommend improvement for commits that improve a current
# implementation without adding a new feature or fixing a bug.
#
# Notice these types are not mandated by the conventional commits specification,
# and have no implicit effect in semantic versioning (unless they include a BREAKING CHANGE).
#
# A scope may be provided to a commit's type, to provide additional contextual
# information and is contained within parenthesis, e.g., feat(parser): add ability to parse arrays.
#
# Configured scopes for this project:
# - data: Data loading, processing, or augmentation
# - model: Model architecture or implementation
# - metric: Evaluation metrics
# - utils: Utility functions
# - cli: Command-line interface
# - docs: Documentation
# - ci: CI/CD configuration
# - engine: Training/inference engine
# - visualization: Visualization tools
# - benchmarking: Benchmarking tools
# - logger: Logging functionality
# - openvino: OpenVINO integration
# - notebooks: Jupyter notebooks