-
Notifications
You must be signed in to change notification settings - Fork 113
/
.gitmessage
52 lines (39 loc) · 3.45 KB
/
.gitmessage
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
<type>(<scope>): <summary>
<Describe the motivation behind this change - explain WHY you are making this change. Wrap all lines
at 100 characters.>
Fixes #<issue number>
# ────────────────────────────────────────── 100 chars ────────────────────────────────────────────┤
# Example Commit Messages
# =======================
# ─── Example: Simple refactor ────────────────────────────────────────────────────────────────────┤
# refactor(design): rename --bl-title-1 to --bl-title-sm
#
# Improve consistency of CSS variable names
# ─────────────────────────────────────────────────────────────────────────────────────────────────┤
# ─── Example: Simple docs change ─────────────────────────────────────────────────────────────────┤
# docs: more examples added about commit rules
#
# Fixes #36332
# ─────────────────────────────────────────────────────────────────────────────────────────────────┤
# ─── Example: A bug fix ──────────────────────────────────────────────────────────────────────────┤
# fix(button): fix hover state for zoomed browsers
#
# When user opens our button component in a zoomed-in browser, hover state flickers because of
# background gradient scales.
#
# Now we use percentage units to avoid this.
# ─────────────────────────────────────────────────────────────────────────────────────────────────┤
# ─── Example: Breaking change ────────────────────────────────────────────────────────────────────┤
# feat(design): design tokens simplified with new default theme
#
# Design team improved default theme design by providing new type of tokens. This commit implements
# those changes.
#
# More information about changes can be found: https://github.com/Trendyol/baklava/discussions/1234
#
# BREAKING CHANGE: default theme has UI changes
#
# This commit changes spacings and colors in default theme as well as providing new type of tokens
#
# Fixes #1234
# ─────────────────────────────────────────────────────────────────────────────────────────────────┤