commitlint-plugin-function-rules 1.3.0 → 1.5.0

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/dist/src/rules.js CHANGED
@@ -30,9 +30,11 @@ const rules = {
30
30
  'function-rules/signed-off-by': function_rule_1.default,
31
31
  'function-rules/subject-case': function_rule_1.default,
32
32
  'function-rules/subject-empty': function_rule_1.default,
33
+ 'function-rules/subject-exclamation-mark': function_rule_1.default,
33
34
  'function-rules/subject-full-stop': function_rule_1.default,
34
35
  'function-rules/subject-max-length': function_rule_1.default,
35
36
  'function-rules/subject-min-length': function_rule_1.default,
37
+ 'function-rules/trailer-exists': function_rule_1.default,
36
38
  'function-rules/type-case': function_rule_1.default,
37
39
  'function-rules/type-empty': function_rule_1.default,
38
40
  'function-rules/type-enum': function_rule_1.default,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "commitlint-plugin-function-rules",
3
- "version": "1.3.0",
3
+ "version": "1.5.0",
4
4
  "description": "commitlint plugin to define rules as functions.",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -45,45 +45,47 @@
45
45
  },
46
46
  "homepage": "https://github.com/vidavidorra/commitlint-plugin-function-rules#readme",
47
47
  "engines": {
48
- "node": ">=10.22.1"
48
+ "node": ">=12"
49
49
  },
50
50
  "peerDependencies": {
51
- "@commitlint/lint": "9.x || 10.x || 11.x || 12.x"
52
- },
53
- "dependencies": {
54
- "@commitlint/types": "12.0.0"
51
+ "@commitlint/lint": ">=9.1.2 <15"
55
52
  },
56
53
  "devDependencies": {
57
- "@commitlint/cli": "12.0.0",
58
- "@commitlint/config-conventional": "12.0.0",
54
+ "@commitlint/cli": "14.1.0",
55
+ "@commitlint/config-conventional": "14.1.0",
59
56
  "@commitlint/lint-10.x": "npm:@commitlint/lint@10.0.0",
60
57
  "@commitlint/lint-11.x": "npm:@commitlint/lint@11.0.0",
61
- "@commitlint/lint-12.x": "npm:@commitlint/lint@12.0.1",
58
+ "@commitlint/lint-12.x": "npm:@commitlint/lint@12.1.4",
59
+ "@commitlint/lint-13.x": "npm:@commitlint/lint@13.2.0",
60
+ "@commitlint/lint-14.x": "npm:@commitlint/lint@14.1.0",
62
61
  "@commitlint/lint-9.x": "npm:@commitlint/lint@9.1.2",
63
62
  "@commitlint/load-10.x": "npm:@commitlint/load@10.0.0",
64
63
  "@commitlint/load-11.x": "npm:@commitlint/load@11.0.0",
65
- "@commitlint/load-12.x": "npm:@commitlint/load@12.0.1",
64
+ "@commitlint/load-12.x": "npm:@commitlint/load@12.1.4",
65
+ "@commitlint/load-13.x": "npm:@commitlint/load@13.2.1",
66
+ "@commitlint/load-14.x": "npm:@commitlint/load@14.1.0",
66
67
  "@commitlint/load-9.x": "npm:@commitlint/load@9.1.2",
67
- "@commitlint/rules": "12.0.0",
68
- "@jest/globals": "26.6.2",
69
- "@semantic-release/changelog": "5.0.1",
70
- "@semantic-release/exec": "5.0.0",
71
- "@semantic-release/git": "9.0.0",
72
- "@typescript-eslint/eslint-plugin": "4.15.1",
73
- "@typescript-eslint/parser": "4.15.1",
74
- "eslint": "7.20.0",
75
- "eslint-config-prettier": "7.2.0",
76
- "eslint-plugin-jest": "24.1.5",
77
- "eslint-plugin-json": "2.1.2",
78
- "eslint-plugin-prettier": "3.3.1",
79
- "husky": "5.0.9",
80
- "jest": "26.6.3",
81
- "lint-staged": "10.5.4",
68
+ "@commitlint/rules": "14.1.0",
69
+ "@commitlint/types": "14.0.0",
70
+ "@jest/globals": "27.3.1",
71
+ "@semantic-release/changelog": "6.0.1",
72
+ "@semantic-release/exec": "6.0.2",
73
+ "@semantic-release/git": "10.0.1",
74
+ "@typescript-eslint/eslint-plugin": "5.3.1",
75
+ "@typescript-eslint/parser": "5.3.1",
76
+ "eslint": "8.2.0",
77
+ "eslint-config-prettier": "8.3.0",
78
+ "eslint-plugin-jest": "25.2.4",
79
+ "eslint-plugin-json": "3.1.0",
80
+ "eslint-plugin-prettier": "4.0.0",
81
+ "husky": "7.0.4",
82
+ "jest": "27.3.1",
83
+ "lint-staged": "11.2.6",
82
84
  "npm-run-all": "4.1.5",
83
- "pinst": "2.1.4",
84
- "prettier": "2.2.1",
85
- "semantic-release": "17.3.9",
86
- "ts-jest": "26.5.1",
87
- "typescript": "4.1.5"
85
+ "pinst": "2.1.6",
86
+ "prettier": "2.4.1",
87
+ "semantic-release": "18.0.0",
88
+ "ts-jest": "27.0.7",
89
+ "typescript": "4.4.4"
88
90
  }
89
91
  }
package/CHANGELOG.md DELETED
@@ -1,262 +0,0 @@
1
- ## [1.3.0](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.2.0...v1.3.0) (2021-02-24)
2
-
3
- ### Features
4
-
5
- - **deps:** update dependency @commitlint/lint to v12 ([9be4bf9](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/9be4bf9d81c5026aa9922a162422e179da14229e))
6
-
7
- ## [1.2.0](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.24...v1.2.0) (2021-02-24)
8
-
9
- ### Features
10
-
11
- - **rules:** add `body-full-stop` rule ([93ec5b8](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/93ec5b8364c3e9a0474d96d2c735f0af55707ad2))
12
-
13
- ### [1.1.24](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.23...v1.1.24) (2021-02-24)
14
-
15
- ### Continuous Integration
16
-
17
- - **renovate:** group commitlint peer dependencies ([9b5253c](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/9b5253c831057a4ab95cf001b32050a847e5c063))
18
-
19
- ### [1.1.23](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.22...v1.1.23) (2021-02-14)
20
-
21
- ### Build System
22
-
23
- - remove `postinstall` script from the published package ([7898ead](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/7898ead1facccfcfe217a2e3ea0313c954d9c405)), closes [#142](https://github.com/vidavidorra/commitlint-plugin-function-rules/issues/142)
24
-
25
- ### [1.1.22](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.21...v1.1.22) (2021-02-13)
26
-
27
- ### Continuous Integration
28
-
29
- - **renovate:** use shared configuration from `vidavidorra/.github` ([2dd5710](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/2dd57106fcd59c2126ce37498af6955cbdefbea8))
30
-
31
- ### Documentation
32
-
33
- - add 2021 to license ([b57d23e](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/b57d23e025d918790c59203e495bc5d13a517ff1))
34
-
35
- ### [1.1.21](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.20...v1.1.21) (2021-02-13)
36
-
37
- ### Continuous Integration
38
-
39
- - remove `chore` commit type from changelog (generation) ([8b658c6](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/8b658c638940e03828a76e06da5852c87e4dfa64))
40
- - **release:** format changelog during release ([90611dd](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/90611dd29d72c93d089f04d1c167ecc45a82ff17))
41
-
42
- ### Build System
43
-
44
- - set `esModuleInterop` to `true` to fix `@commitlint/types` import ([5bc52ea](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/5bc52eab6aff64d2481e3bf7383d599ec7647e4b))
45
-
46
- ### [1.1.20](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.19...v1.1.20) (2020-10-25)
47
-
48
- ### Documentation
49
-
50
- - fix contributing guide link ([9cdabda](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/9cdabda5242ea2c5a6955967a0b356c2596a924e))
51
-
52
- ### [1.1.19](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.18...v1.1.19) (2020-10-24)
53
-
54
- ### Documentation
55
-
56
- - add badge for supported Node.js version ([3098f03](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/3098f031c959e7a379435f8415df796c2167ad13))
57
- - link Node.js badge to Node.js releases page ([3871927](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/3871927a7d6b59577d0f2f9e8e0b85b6fa798af5))
58
-
59
- ### [1.1.18](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.17...v1.1.18) (2020-10-24)
60
-
61
- ### Continuous Integration
62
-
63
- - set test name with Node.js version in build workflow ([bb06e2e](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/bb06e2ec1a56b5c307a083dfd6c60c827e70395c))
64
-
65
- ### [1.1.17](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.16...v1.1.17) (2020-10-24)
66
-
67
- ### Bug Fixes
68
-
69
- - **package:** specify supported node engine to v10 (LTS) ([274ca4d](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/274ca4db478ae029e601203f8e18c480ebcb4d41))
70
-
71
- ### [1.1.16](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.15...v1.1.16) (2020-10-20)
72
-
73
- ### Documentation
74
-
75
- - specify `rules` as object in the usage example ([ce8555e](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/ce8555e0d29a961e98726dd04f8a51061ff76d72))
76
-
77
- ### [1.1.15](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.14...v1.1.15) (2020-10-19)
78
-
79
- ### Documentation
80
-
81
- - add documentation with my new readme style ([c457afd](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/c457afd554c8b8d1e15bd01af16480761b4edee0))
82
-
83
- ### [1.1.14](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.13...v1.1.14) (2020-10-07)
84
-
85
- ### Continuous Integration
86
-
87
- - separate build check from lint and check build pre-commit ([30c5dc4](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/30c5dc4a895383a04e058cda807cdab741ca2904))
88
-
89
- ### [1.1.13](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.12...v1.1.13) (2020-10-02)
90
-
91
- ### Continuous Integration
92
-
93
- - run full tests in lint-staged ([c772b99](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/c772b9919c17b92115f4ed76bf370e898f2e859f))
94
-
95
- ### [1.1.12](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.11...v1.1.12) (2020-10-02)
96
-
97
- ### Continuous Integration
98
-
99
- - **renovate:** fix accidental removal of `pinDependencies` ([8e950fd](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/8e950fd8cd7682374f76f67cd3aba576d18d9a00))
100
- - **renovate:** migrate config to Renovate > v21.28.0 ([60d89b5](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/60d89b5ccd914bf96386d78c5b0d2d9e97ed1e98))
101
-
102
- ### [1.1.11](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.10...v1.1.11) (2020-09-27)
103
-
104
- ### Bug Fixes
105
-
106
- - use `Plugin` from the commitlint types ([33bab71](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/33bab717e33c9a5f94a093d8a479b46a42818de9))
107
-
108
- ### Build System
109
-
110
- - add scripts to clean and build with clean first ([8782e3a](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/8782e3ae0816a6d1c54dfeb2c0e727ed5c82dbfb))
111
-
112
- ### [1.1.10](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.9...v1.1.10) (2020-09-27)
113
-
114
- ### Continuous Integration
115
-
116
- - trigger release ([82c563b](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/82c563b89c1d43324e26cd241ee0e79d0baff0b8))
117
-
118
- ### [1.1.9](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.8...v1.1.9) (2020-09-27)
119
-
120
- ### Bug Fixes
121
-
122
- - **package:** correct 'types' of package ([9df7d4e](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/9df7d4e6cccffee8fa8c32a0b30a4dce9818cd04))
123
-
124
- ### [1.1.8](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.7...v1.1.8) (2020-09-27)
125
-
126
- ### Documentation
127
-
128
- - add npm version badge ([a0fff5f](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/a0fff5fb4b888e2604b2b28a3032e9d4bdbe5fd4))
129
-
130
- ### [1.1.7](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.6...v1.1.7) (2020-09-24)
131
-
132
- ### Continuous Integration
133
-
134
- - test and build with Node v14 ([3586da5](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/3586da5210356776efa3b485246e6a6f461f88a0))
135
-
136
- ### [1.1.6](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.5...v1.1.6) (2020-09-24)
137
-
138
- ### Bug Fixes
139
-
140
- - **package:** correct `main` path ([90d2bde](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/90d2bdeb212163966bea48200a51d99bebd649a4))
141
-
142
- ### Documentation
143
-
144
- - correct description of CI build ([824ba4e](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/824ba4e99fe2b3e4c51fffa8316f033bbe610031))
145
-
146
- ### [1.1.5](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.4...v1.1.5) (2020-09-20)
147
-
148
- ### Continuous Integration
149
-
150
- - **release:** add npm tarball to GitHub publish ([dc1db2b](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/dc1db2b99b6486de6536823fc494ed681034ab82))
151
-
152
- ### [1.1.4](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.3...v1.1.4) (2020-09-20)
153
-
154
- ### Continuous Integration
155
-
156
- - **release:** disable release on chore commits ([834bd70](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/834bd70a655d16c1210e2a83b1750c5a6c62049a))
157
-
158
- ### [1.1.3](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.2...v1.1.3) (2020-09-20)
159
-
160
- ### Continuous Integration
161
-
162
- - **renovate:** disable for aliased packages with final version ([e216ab2](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/e216ab287c3917503a2c5ae25b6a795b330b7643))
163
-
164
- ### Continuous Integration
165
-
166
- - **commits:** add commitlint configuration to allow longer dependency commits ([d36c8ab](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/d36c8ab6fddbb4971cc725846d8b81e232d0d0b4))
167
-
168
- ### [1.1.1](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.1.0...v1.1.1) (2020-09-20)
169
-
170
- ### Continuous Integration
171
-
172
- - **deps:** disable auto-merge for peer dependencies ([f9b4991](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/f9b499170c65ed323ec27a07ef54dcd8668cf51e))
173
- - **deps:** use Renovate default commit scope for `devDependencies` and `dependencies` ([b4d864c](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/b4d864c7d76f407f66840631bb10d7591e35845f))
174
-
175
- ## [1.1.0](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.13...v1.1.0) (2020-09-20)
176
-
177
- ### Features
178
-
179
- - add support for @commitlint/lint v10.x ([493ad35](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/493ad3507a4c7c9c5a1e48ae0fc066a47215fb5b))
180
-
181
- ### [1.0.13](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.12...v1.0.13) (2020-09-19)
182
-
183
- ### Tests
184
-
185
- - **end-to-end:** test agains commitlint v9.x, v10.x and v11.x ([9d7715d](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/9d7715d9355483901906582d0cd002b2ffa3b00a))
186
-
187
- ### [1.0.12](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.11...v1.0.12) (2020-09-18)
188
-
189
- ### Bug Fixes
190
-
191
- - **package:** point `main`, `types` and `files` to the correct paths ([df10abf](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/df10abfd07418122088f6af29f49eca5a84501dc))
192
-
193
- ### Tests
194
-
195
- - **end-to-end:** separate load test ([75943e5](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/75943e5004a4865f2d650d62ca38f5fdc0768e25))
196
-
197
- ### [1.0.11](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.10...v1.0.11) (2020-09-18)
198
-
199
- ### [1.0.10](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.9...v1.0.10) (2020-09-18)
200
-
201
- ### [1.0.9](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.8...v1.0.9) (2020-09-17)
202
-
203
- ### Continuous Integration
204
-
205
- - **deps:** separate [@commitlint](https://github.com/commitlint) peer-, dev- and dependencies ([0c42187](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/0c421872968bd8c48106b02a2cbea9074483e458))
206
-
207
- ### [1.0.8](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.7...v1.0.8) (2020-09-16)
208
-
209
- ### Bug Fixes
210
-
211
- - unpin peer dependency and set to major version 9 range ([766f6f0](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/766f6f02f471ec4b90f728856d86340a5875cd8c))
212
-
213
- ### Tests
214
-
215
- - add end-to-end test ([3de942c](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/3de942c8c3750a4b2d4dd69febb29a7c24385bc3))
216
-
217
- ### Continuous Integration
218
-
219
- - check build for type errors when linting ([dec4be8](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/dec4be82de18af68fc886b98880ad4ac507719ff))
220
-
221
- ### [1.0.7](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.6...v1.0.7) (2020-09-14)
222
-
223
- ### [1.0.6](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.5...v1.0.6) (2020-09-14)
224
-
225
- ### Continuous Integration
226
-
227
- - **deps:** separate dev, peer and dependencies in Renovate commits ([40d4358](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/40d43587f8c614fb577fcb02bdd62c496049a0f9))
228
- - **release:** release on peer and regular dependencies ([b7d445a](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/b7d445a5761a4320a7952e1f22346dd21c10ff8b))
229
-
230
- ### [1.0.5](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.4...v1.0.5) (2020-09-13)
231
-
232
- ### [1.0.4](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.3...v1.0.4) (2020-09-12)
233
-
234
- ### [1.0.3](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.2...v1.0.3) (2020-09-07)
235
-
236
- ### [1.0.2](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.1...v1.0.2) (2020-09-07)
237
-
238
- ### [1.0.1](https://github.com/vidavidorra/commitlint-plugin-function-rules/compare/v1.0.0...v1.0.1) (2020-09-06)
239
-
240
- ### Continuous Integration
241
-
242
- - **release:** build before release to include dist ([4ff37ce](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/4ff37ce50866651bb4404d5de8e0552f385d5b5a))
243
-
244
- ## 1.0.0 (2020-09-06)
245
-
246
- ### Features
247
-
248
- - add function rule plugin sources and tests ([1a8db80](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/1a8db80329a93b4a087620aae711bab205769e78))
249
-
250
- ### Documentation
251
-
252
- - add code coverage badge ([fb6d27b](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/fb6d27b2c16a15a36b4000afbb0c13864f93f1d2))
253
-
254
- ### Continuous Integration
255
-
256
- - **release:** fix npm env value ([308ffae](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/308ffae48083a06f35202b4cbad95f02325dd835))
257
- - re-enable release step ([58ac7f2](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/58ac7f282555df83f4e2a36da337f92a0ab5e186))
258
- - **release:** publish to npm ([d1cd2aa](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/d1cd2aa6faf7e474bf2331a5aedf4555f34c5fb7))
259
- - add build, test and coverage jobs ([3e42d16](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/3e42d16cd8c69788eff042e68589907bf58fd605))
260
- - disable release step until build and tests are finished ([3e2e92a](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/3e2e92ae0f117bd5faf7cbd2aea49d79dc424819))
261
- - rename job 'build-and-test' to 'build' ([76cb756](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/76cb756d8d7cd48cd4fe4310b3e3a07abc88a395))
262
- - separate build and test jobs ([d4140da](https://github.com/vidavidorra/commitlint-plugin-function-rules/commit/d4140da116a1645cff27a0cf6af5a75802f88090))