lint: EditorConfig rename + process-type VS Code Lint tasks#263
Merged
Conversation
Apply the fleet conventions (ProjectTemplate #280): rename the Check line endings step / Lint: Line Endings task to EditorConfig, and switch the VS Code Lint tasks to type: process with an args array. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Aligns this repo’s local lint tasks and CI step naming with the ProjectTemplate fleet conventions by renaming the EditorConfig checker task/step and switching VS Code lint tasks from type: shell to type: process with explicit args.
Changes:
- Rename the local lint task from “Lint: Line Endings” to “Lint: EditorConfig” and update the “Lint: All” dependency accordingly.
- Convert VS Code lint tasks to
type: processand providedockerinvocation viacommand+argsarrays. - Rename the CI workflow step from “Check line endings step” to “Check EditorConfig step”.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .vscode/tasks.json | Renames the EditorConfig lint task and switches lint tasks to process-type docker invocations with args. |
| .github/workflows/validate-task.yml | Renames the EditorConfig checker step to match the new terminology (no behavioral change). |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #263 +/- ##
========================================
Coverage 87.43% 87.43%
========================================
Files 11 11
Lines 1973 1973
Branches 243 243
========================================
Hits 1725 1725
Misses 166 166
Partials 82 82 🚀 New features to boost your workflow:
|
This was referenced Jul 13, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Applies fleet conventions from ProjectTemplate #280: rename
Check line endings->Check EditorConfig(CI step + VS Code task), and the VS Code Lint tasks usetype: processwith an args array (from shell+command).