@siemens/commitlint-config 4.2.0 → 4.2.1

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.
@@ -0,0 +1,30 @@
1
+ /**
2
+ * Copyright Siemens 2026.
3
+ * SPDX-License-Identifier: MIT
4
+ */
5
+ export default {
6
+ extends: ['@commitlint/config-conventional'],
7
+ rules: {
8
+ // Allow longer lines in commit body/footer. Needed for longer links.
9
+ 'body-max-line-length': [1, 'always', 100],
10
+ 'footer-max-line-length': [1, 'always', 100],
11
+ 'type-enum': [
12
+ 2,
13
+ 'always',
14
+ [
15
+ 'build',
16
+ 'chore',
17
+ 'ci',
18
+ 'docs',
19
+ 'feat',
20
+ 'fix',
21
+ 'fixup', // fix up of an unreleased feature (message will NOT appear in the CHANGELOG)
22
+ 'perf',
23
+ 'refactor',
24
+ 'revert',
25
+ 'style',
26
+ 'test'
27
+ ]
28
+ ]
29
+ }
30
+ };
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License
2
2
 
3
- Copyright (c) Siemens 2018 - 2024
3
+ Copyright (c) Siemens 2018 - 2026
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the “Software”), to deal in
package/README.md CHANGED
@@ -312,6 +312,6 @@ See [CONTRIBUTING.md](CONTRIBUTING.md).
312
312
 
313
313
  ## License
314
314
 
315
- Code and documentation Copyright (c) Siemens 2018 - 2024.
315
+ Code and documentation Copyright (c) Siemens 2018 - 2026.
316
316
 
317
317
  See [LICENSE.md](LICENSE.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siemens/commitlint-config",
3
- "version": "4.2.0",
3
+ "version": "4.2.1",
4
4
  "description": "Configuration for commitlint.",
5
5
  "files": [
6
6
  "*.js",