@lanzorg/commitlint-config-template 0.0.141 → 0.0.143
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +58 -96
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,102 +1,64 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<p><img src="https://raw.githubusercontent.com/olankens/
|
|
3
|
-
<h1>
|
|
4
|
-
<p>Dart cross-platform library for Hisense U7QF TV automation, edit your picture profiles for SDR, HDR10, HDR+, and DOVI using a tailored MQTT client and a dummy certificate to bypass broker authentication.</p>
|
|
5
|
-
<img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/dart.svg" width="52">
|
|
6
|
-
<img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/androidstudio.svg" width="52">
|
|
7
|
-
<img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/flutter.svg" width="52">
|
|
2
|
+
<p><img src="https://raw.githubusercontent.com/olankens/msgstyle/HEAD/.assets/icon.png" align="center" width="128"></p>
|
|
3
|
+
<h1>MSGSTYLE</h1>
|
|
8
4
|
</div>
|
|
9
5
|
|
|
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
|
-
|
|
6
|
+
<table><tr><td align="center" width="9999"><p>
|
|
7
|
+
<a href="https://olankens.com">WEBSITE</a> ·
|
|
8
|
+
<a href="https://ko-fi.com/olankens">FUNDING</a>
|
|
9
|
+
</p></td></tr></table>
|
|
10
|
+
|
|
11
|
+
<table><tr><td align="center" width="9999"> <p>
|
|
12
|
+
Enforce a strict Git commit message style by validating each message against a defined set of opinionated rules. This script improves consistency and clarity in your commit history by checking structure, length, formatting, and overall content quality.
|
|
13
|
+
</p> </td></tr></table>
|
|
14
|
+
|
|
15
|
+
<table><tr><td align="center" width="99999"><p>
|
|
16
|
+
<picture><img src="https://raw.githubusercontent.com/olankens/msgstyle/HEAD/.assets/git.svg" align="center" width="52"></picture>
|
|
17
|
+
<picture><img src="https://raw.githubusercontent.com/olankens/msgstyle/HEAD/.assets/bash.svg" align="center" width="52"></picture>
|
|
18
|
+
</p></td></tr></table>
|
|
19
|
+
|
|
20
|
+
### FEATURES
|
|
21
|
+
|
|
22
|
+
<table>
|
|
23
|
+
<tbody><tr>
|
|
24
|
+
<td width="99999">Length between 20 and 100</td>
|
|
25
|
+
<td>✅</td>
|
|
26
|
+
</tr></tbody>
|
|
27
|
+
<tbody><tr>
|
|
28
|
+
<td width="99999">No scope or type</td>
|
|
29
|
+
<td>✅</td>
|
|
30
|
+
</tr></tbody>
|
|
31
|
+
<tbody><tr>
|
|
32
|
+
<td width="99999">No trailing punctuation</td>
|
|
33
|
+
<td>✅</td>
|
|
34
|
+
</tr></tbody>
|
|
35
|
+
<tbody><tr>
|
|
36
|
+
<td width="99999">No weird characters</td>
|
|
37
|
+
<td>✅</td>
|
|
38
|
+
</tr></tbody>
|
|
39
|
+
<tbody><tr>
|
|
40
|
+
<td width="99999">Start with a capital letter</td>
|
|
41
|
+
<td>✅</td>
|
|
42
|
+
</tr></tbody>
|
|
43
|
+
<tbody><tr>
|
|
44
|
+
<td width="99999">Start with a verb (still very naive)</td>
|
|
45
|
+
<td>✅</td>
|
|
46
|
+
</tr></tbody>
|
|
47
|
+
</table>
|
|
48
|
+
|
|
49
|
+
### LEARNING
|
|
50
|
+
|
|
51
|
+
#### Installing Globally
|
|
52
|
+
|
|
53
|
+
```shell
|
|
54
|
+
git config --global core.hooksPath "$HOME/.githooks"
|
|
55
|
+
curl "https://raw.githubusercontent.com/olankens/msgstyle/HEAD/scripts/msgstyle.sh" -o "$HOME/.githooks/commit-msg"
|
|
56
|
+
chmod +x "$HOME/.githooks/commit-msg"
|
|
56
57
|
```
|
|
57
58
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
# SENCHARD
|
|
61
|
-
|
|
62
|
-
<p><img src=".assets/asset-01.png" align="center" width="100%"></p>
|
|
63
|
-
|
|
64
|
-
Dart cross-platform library for Hisense U7QF TV automation, edit your picture profiles for SDR, HDR10, HDR+, and DOVI using a tailored MQTT client and a dummy certificate to bypass broker authentication.
|
|
65
|
-
|
|
66
|
-
## Add Package
|
|
67
|
-
|
|
68
|
-
```sh
|
|
69
|
-
flutter pub add senchard --git-url https://github.com/olankens/senchard
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
## Create Client
|
|
73
|
-
|
|
74
|
-
```dart
|
|
75
|
-
var client = Client('television_ip_address_here', foolish: true);
|
|
76
|
-
```
|
|
77
|
-
|
|
78
|
-
## Update Picture Mode
|
|
79
|
-
|
|
80
|
-
```dart
|
|
81
|
-
await client
|
|
82
|
-
..attach()
|
|
83
|
-
..changePictureMode(PictureMode.cinemaNight)
|
|
84
|
-
..revertPictureMode()
|
|
85
|
-
..changeApplyPicture(ApplyPicture.all)
|
|
86
|
-
..changeLocalDimming(LocalDimming.off)
|
|
87
|
-
..changeBacklight(40)
|
|
88
|
-
..changeBrightness(50)
|
|
89
|
-
..changeContrast(70)
|
|
90
|
-
..changeColorSaturation(50)
|
|
91
|
-
..changeSharpness(5)
|
|
92
|
-
..changeAdaptiveContrast(AdaptiveContrast.off)
|
|
93
|
-
..changeUltraSmoothMotion(UltraSmoothMotion.off)
|
|
94
|
-
..changeNoiseReduction(NoiseReduction.off)
|
|
95
|
-
..changeColorTemperature(ColorTemperature.warm1)
|
|
96
|
-
..changeColorGamut(ColorGamut.native)
|
|
97
|
-
..changeGammaAdjustment(GammaAdjustment.gamma22)
|
|
98
|
-
..toggleViewingAngle()
|
|
99
|
-
..detach();
|
|
100
|
-
```
|
|
59
|
+
#### Installing Locally
|
|
101
60
|
|
|
102
|
-
|
|
61
|
+
```shell
|
|
62
|
+
curl "https://raw.githubusercontent.com/olankens/msgstyle/HEAD/scripts/msgstyle.sh" -o ".git/hooks/commit-msg"
|
|
63
|
+
chmod +x ".git/hooks/commit-msg"
|
|
64
|
+
```
|