docs: explain role of mise and Renovate, add editorconfig#23
Merged
zeitlinger merged 3 commits intomainfrom Feb 17, 2026
Merged
docs: explain role of mise and Renovate, add editorconfig#23zeitlinger merged 3 commits intomainfrom
zeitlinger merged 3 commits intomainfrom
Conversation
- Add "How it works" section explaining mise (tool installer + task runner) and Renovate (dependency updater + preset) - Add per-linter paragraphs describing how mise and Renovate interact with each task - Add .editorconfig with line length limits (100 default, 120 for scripts, 300 for config files) - Wrap all prose to 100 chars, use editorconfig-checker-disable for tables and HTML that can't be shortened - Extract long shell/Python lines into intermediate variables Signed-off-by: Gregor Zeitlinger <gregor.zeitlinger@grafana.com>
The HTML comment between </h1> and <p> broke badge rendering on GitHub by splitting the HTML block. Signed-off-by: Gregor Zeitlinger <gregor.zeitlinger@grafana.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR improves onboarding documentation for flint by explaining how mise (tool installer + task runner) and Renovate (dependency updater + preset) work together, and adds an .editorconfig to standardize line-length limits across the repo.
Changes:
- Expanded README with a “How it works” section and per-task explanations of how mise and Renovate interact.
- Wrapped prose to 100 chars, added
editorconfig-checker-disableguards for sections that can’t reasonably conform (tables/HTML). - Added
.editorconfigline-length limits and refactored a few long lines in scripts/config.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
tasks/lint/renovate-deps.py |
Refactors env parsing into an intermediate variable to avoid long lines. |
tasks/lint/links.sh |
Extracts the default regex into a variable to reduce line length and improve readability. |
README.md |
Adds “How it works” + per-task mise/Renovate behavior; wraps prose and adds checker disable/enable markers. |
CLAUDE.md |
Wraps the AUTOFIX convention description to comply with line-length constraints. |
.github/renovate.json5 |
Collapses long arrays/strings to reduce formatting noise and align with new line-length policies. |
.editorconfig |
Introduces repo-wide max line length rules (and indentation settings). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: Gregor Zeitlinger <gregor.zeitlinger@grafana.com>
This was referenced Apr 16, 2026
Closed
Closed
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.
Summary
(tool installer + task runner) and Renovate (dependency updater +
preset) for users new to the project
with each task (super-linter, links, renovate-deps)
.editorconfigwith line length limits (100 default, 120 forscripts, 300 for config files) mirroring prom_client_java setup
editorconfig-checker-disablefor tables and HTML that can't beshortened
comply with editorconfig limits
Test plan
mise run lintpasses locally