@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.
Files changed (2) hide show
  1. package/README.md +58 -96
  2. 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/senchard/HEAD/.assets/icon.png" align="" width="144"></p>
3
- <h1>SENCHARD</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
- ## PREVIEWS
11
-
12
- <p><img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/asset-01.png" align="" width="100%"></p>
13
-
14
- ## LEARNING
15
-
16
- ### ADD PACKAGE
17
-
18
- Lorem ipsum dolor sit amet adipiscing elit.
19
-
20
- ```sh
21
- flutter pub add senchard --git-url https://github.com/olankens/senchard
22
- ```
23
-
24
- ### CREATE CLIENT
25
-
26
- Lorem ipsum dolor sit amet adipiscing elit.
27
-
28
- ```dart
29
- var client = Client('television_ip_address_here', foolish: true);
30
- ```
31
-
32
- ### UPDATE PICTURE MODE
33
-
34
- Lorem ipsum dolor sit amet adipiscing elit.
35
-
36
- ```dart
37
- await client
38
- ..attach()
39
- ..changePictureMode(PictureMode.cinemaNight)
40
- ..revertPictureMode()
41
- ..changeApplyPicture(ApplyPicture.all)
42
- ..changeLocalDimming(LocalDimming.off)
43
- ..changeBacklight(40)
44
- ..changeBrightness(50)
45
- ..changeContrast(70)
46
- ..changeColorSaturation(50)
47
- ..changeSharpness(5)
48
- ..changeAdaptiveContrast(AdaptiveContrast.off)
49
- ..changeUltraSmoothMotion(UltraSmoothMotion.off)
50
- ..changeNoiseReduction(NoiseReduction.off)
51
- ..changeColorTemperature(ColorTemperature.warm1)
52
- ..changeColorGamut(ColorGamut.native)
53
- ..changeGammaAdjustment(GammaAdjustment.gamma22)
54
- ..toggleViewingAngle()
55
- ..detach();
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">&nbsp;<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>&nbsp;</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
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lanzorg/commitlint-config-template",
3
- "version": "0.0.141",
3
+ "version": "0.0.143",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [