-
Notifications
You must be signed in to change notification settings - Fork 136
(CAT-1698) Slim .rubocop.yml to the NewCops: enable deep-merge model and validate clean scaffolds
#647
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
david22swan
wants to merge
13
commits into
main
Choose a base branch
from
CAT-1698-rubocop-templates
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
(CAT-1698) Slim .rubocop.yml to the NewCops: enable deep-merge model and validate clean scaffolds
#647
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
d6e1985
(CAT-1698) Rewrite config_defaults.yml to the slim two-profile model
david22swan a0c2236
(CAT-1698) Remove obsolete rubocop/ machinery
david22swan ca3056c
(CAT-1698) Rewrite .rubocop.yml.erb to the slim deep-merge model
david22swan eb0313b
(CAT-1698) Ignore GSD planning documents
david22swan f67422e
(CAT-1698) Update README and CLAUDE.md for the slim deep-merge model
david22swan cf9953f
(CAT-1698) Update the integration test to the slim NewCops model
david22swan 6420f44
(CAT-1698) Tune PDK and rspec-puppet convention cops in default_configs
david22swan ade4849
(CAT-1698) Emit squiggly heredocs and aligned hashes in resource-API …
david22swan c4178a1
(CAT-1698) Use idiomatic parameter name and single-quoted symbol in v…
david22swan aad5b87
(CAT-1698) Trim SimpleProvider get example and align its spec
david22swan 284b646
(CAT-1698) Correct cop namespace in transport device disable directive
david22swan 2e10127
(CAT-1698) Align internal deep-merge knockout prefix to ---
david22swan 0639643
(CAT-1698) Document convention tunings and knockout prefix in CLAUDE.md
david22swan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pre-update CI assertion is weaker than it looks.
grep -A 5 "AllCops" ./.rubocop.yml | grep -q "NewCops"would pass even if the profile deep-merge were completely broken, becauseNewCopsis hardcoded in thedefaultshash unconditionally — it appears in the rendered file regardless of whetherprofile['configs']contributed anything.The old assertion (
grep -A 1 "Performance/CaseWhenSplat" | grep -q "true") at least verified that the profile merge contributed a specific cop setting. Consider adding an assertion that checks a tuning fromdefault_configsactually appears — e.g. checking thatStyle/TrailingCommaInHashLiteralorRSpec/DescribeClassappears in the rendered file with the expected value.