carson 2.17.1 → 2.17.2
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.
- checksums.yaml +4 -4
- data/RELEASE.md +11 -0
- data/VERSION +1 -1
- data/templates/.github/.mega-linter.yml +6 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ce95d5142cc99fa43b36a427d81bbef42e679995d5411725cccc8c71e971113
|
|
4
|
+
data.tar.gz: 7aa827c334d0af7057507ace09075e3fdb4e3059bc1a64738732a32a413590c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6980778df5332d35665b5c4dfa974fa635a572f7c99cc5995a97ff85800920caa3546ea155368d12bdb5c147850eb7dcb374068830fb166a6930bcd2bba8905e
|
|
7
|
+
data.tar.gz: 0abf3dad0910f1a824af97ca6baacfb63cb2ee4f43c1a0161883b38c8b5c9827a052cb73f7a5fab76281581dcc3c3ec9f35800e27598ce48dfd468e055c416d2
|
data/RELEASE.md
CHANGED
|
@@ -5,6 +5,17 @@ Release-note scope rule:
|
|
|
5
5
|
- `RELEASE.md` records only version deltas, breaking changes, and migration actions.
|
|
6
6
|
- Operational usage guides live in `MANUAL.md` and `API.md`.
|
|
7
7
|
|
|
8
|
+
## 2.17.2 — Lint Code, Not Prose
|
|
9
|
+
|
|
10
|
+
### What changed
|
|
11
|
+
|
|
12
|
+
- Disabled entire `MARKDOWN`, `RST`, and `SPELL` descriptors in MegaLinter config. Carson governs code quality — prose linting is out of scope and creates noise on documentation-heavy repos.
|
|
13
|
+
- Removed now-redundant `SPELL_CSPELL` from `DISABLE_LINTERS` (covered by the descriptor-level `SPELL` disable).
|
|
14
|
+
|
|
15
|
+
### No migration required
|
|
16
|
+
|
|
17
|
+
Run `carson refresh` — the updated template propagates automatically.
|
|
18
|
+
|
|
8
19
|
## 2.17.1 — Disable IaC Security Scanners
|
|
9
20
|
|
|
10
21
|
### What changed
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.17.
|
|
1
|
+
2.17.2
|
|
@@ -12,12 +12,17 @@ VALIDATE_ALL_CODEBASE: false
|
|
|
12
12
|
# Exclude vendored, generated, and dependency directories.
|
|
13
13
|
FILTER_REGEX_EXCLUDE: "(vendor/|node_modules/|public/packs|public/assets|tmp/|log/|coverage/)"
|
|
14
14
|
|
|
15
|
+
# Lint code, not prose. Disable documentation-oriented descriptors.
|
|
16
|
+
DISABLE:
|
|
17
|
+
- MARKDOWN
|
|
18
|
+
- RST
|
|
19
|
+
- SPELL
|
|
20
|
+
|
|
15
21
|
# Disable linters that are too noisy without per-project configuration.
|
|
16
22
|
# checkov and kics are IaC security scanners — they flag Carson's own
|
|
17
23
|
# workflow permissions (issues: write, pull-requests: write) as overly
|
|
18
24
|
# permissive, but MegaLinter needs these to post PR comments.
|
|
19
25
|
DISABLE_LINTERS:
|
|
20
|
-
- SPELL_CSPELL
|
|
21
26
|
- COPYPASTE_JSCPD
|
|
22
27
|
- HTML_DJLINT
|
|
23
28
|
- REPOSITORY_CHECKOV
|