carson 2.16.1 → 2.17.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.
- checksums.yaml +4 -4
- data/RELEASE.md +14 -0
- data/VERSION +1 -1
- data/lib/carson/config.rb +1 -1
- data/templates/.github/.mega-linter.yml +19 -0
- data/templates/.github/workflows/carson-lint.yml +1 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: beed85a11e303c6c34258e51b20d553ea4becdfcc22c9cc28bb7889621a25eac
|
|
4
|
+
data.tar.gz: d59f7bb131cc1f15bc90f4c8bebf1d6a58f361bbfeec960827460a6144bab6bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c554db7a64b8d9ef314c3e26a2be21623e37972dd12fb39093d3e9a2ae71f19f53c5e8a313a72b89de6eba8bbb8943fde3b5bbcc8f8123d4d051de839afa315
|
|
7
|
+
data.tar.gz: 67bd246d6dfcd97efcf521278198fb6040a734115a5f3b5b9b4aef9c72ae4e9598f3e4e9f22470b2846b967d028ee9a1a52e1f4e73835afd2a61530eff375ad3
|
data/RELEASE.md
CHANGED
|
@@ -5,6 +5,20 @@ 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.0 — MegaLinter Configuration Template
|
|
9
|
+
|
|
10
|
+
### What changed
|
|
11
|
+
|
|
12
|
+
- Added `.mega-linter.yml` as a Carson-managed template, deployed to `.github/.mega-linter.yml` in governed repositories. Previously MegaLinter ran with its own defaults, ignoring project-level configs and producing thousands of false positives.
|
|
13
|
+
- **Project configs first**: `LINTER_RULES_PATH: "."` tells MegaLinter to use project-root config files (`.rubocop.yml`, `.eslintrc`, etc.) instead of built-in defaults. Fixes the RuboCop indentation mismatch.
|
|
14
|
+
- **Vendor exclusions**: `FILTER_REGEX_EXCLUDE` skips `vendor/`, `node_modules/`, `public/packs`, `public/assets`, `tmp/`, `log/`, and `coverage/`.
|
|
15
|
+
- **Noisy linters disabled**: `SPELL_CSPELL` (needs per-project dictionary), `COPYPASTE_JSCPD` (false positives on generated code), `HTML_DJLINT` (designed for Jinja, not ERB).
|
|
16
|
+
- Updated `carson-lint.yml` workflow with `MEGALINTER_CONFIG: .github/.mega-linter.yml` to point MegaLinter at the non-default config location.
|
|
17
|
+
|
|
18
|
+
### Migration
|
|
19
|
+
|
|
20
|
+
Run `carson refresh` — the new template is applied automatically and propagated to governed repos.
|
|
21
|
+
|
|
8
22
|
## 2.16.1 — Template Propagation Cleanup Fix
|
|
9
23
|
|
|
10
24
|
### What changed
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.17.0
|
data/lib/carson/config.rb
CHANGED
|
@@ -48,7 +48,7 @@ module Carson
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
"template" => {
|
|
51
|
-
"managed_files" => [ ".github/carson.md", ".github/copilot-instructions.md", ".github/CLAUDE.md", ".github/AGENTS.md", ".github/pull_request_template.md", ".github/workflows/carson-lint.yml" ],
|
|
51
|
+
"managed_files" => [ ".github/carson.md", ".github/copilot-instructions.md", ".github/CLAUDE.md", ".github/AGENTS.md", ".github/pull_request_template.md", ".github/workflows/carson-lint.yml", ".github/.mega-linter.yml" ],
|
|
52
52
|
"superseded_files" => [ ".github/carson-instructions.md" ]
|
|
53
53
|
},
|
|
54
54
|
"lint" => {
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Carson-managed MegaLinter configuration.
|
|
2
|
+
# Pushed to governed repositories by `carson template apply`.
|
|
3
|
+
# To override, add entries to a local .mega-linter.yml — MegaLinter merges both.
|
|
4
|
+
|
|
5
|
+
# Use project-root linter configs (.rubocop.yml, .eslintrc, etc.)
|
|
6
|
+
# instead of MegaLinter's built-in defaults.
|
|
7
|
+
LINTER_RULES_PATH: "."
|
|
8
|
+
|
|
9
|
+
# Only lint changed files on PRs, not the entire codebase.
|
|
10
|
+
VALIDATE_ALL_CODEBASE: false
|
|
11
|
+
|
|
12
|
+
# Exclude vendored, generated, and dependency directories.
|
|
13
|
+
FILTER_REGEX_EXCLUDE: "(vendor/|node_modules/|public/packs|public/assets|tmp/|log/|coverage/)"
|
|
14
|
+
|
|
15
|
+
# Disable linters that are too noisy without per-project configuration.
|
|
16
|
+
DISABLE_LINTERS:
|
|
17
|
+
- SPELL_CSPELL
|
|
18
|
+
- COPYPASTE_JSCPD
|
|
19
|
+
- HTML_DJLINT
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: carson
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.17.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hailei Wang
|
|
@@ -63,6 +63,7 @@ files:
|
|
|
63
63
|
- lib/carson/runtime/review/utility.rb
|
|
64
64
|
- lib/carson/runtime/setup.rb
|
|
65
65
|
- lib/carson/version.rb
|
|
66
|
+
- templates/.github/.mega-linter.yml
|
|
66
67
|
- templates/.github/AGENTS.md
|
|
67
68
|
- templates/.github/CLAUDE.md
|
|
68
69
|
- templates/.github/carson.md
|