You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***wildcards** config is ignored - as of version `2.0.0` the former `.wildcards` configuration is ignored entirely. If your `.commitlintrc` or an extended shareable configuration has a `.wildcards` key a warning will be issued.
18
+
19
+
#### API
20
+
21
+
* None
22
+
5
23
## Version 2 to 3
24
+
25
+
```sh
26
+
npm remove --save-dev conventional-changelog-lint
27
+
npm install --save commitlint
28
+
mv .conventional-changelog-lintrc .commitlintrc
29
+
```
30
+
31
+
* Rename all calls to `conventional-changelog-lint` to `commitlint`
32
+
33
+
### Breaking changes
34
+
35
+
#### CLI
36
+
37
+
*`conventional-changelog-lint` command now is called `commitlint`
38
+
*`commitlint` command now is installed via `@commitlint/cli`
39
+
*`.conventional-changelog-lintrc` now is called `.commitlintrc`
40
+
*`--preset | -p` flag was removed. The `angular` preset is used always.
41
+
42
+
#### Config
43
+
44
+
*`.preset` key is removed. The `angular` preset is used always.
45
+
46
+
#### API
47
+
48
+
*`getConfiguration(name, settings, seed)` changed to `load(seed)`
49
+
*`getMessages(range)` changed to `read(range)`
50
+
*`getPreset(name, require)` removed
51
+
*`format(report, options)` now only respects `.color` on `options`
52
+
*`lint(message, options)` changed to `lint(message, rules)`
0 commit comments