mirror of
https://github.com/ivuorinen/aeonview.git
synced 2026-03-14 06:58:46 +00:00
* Initial plan * fix: ignore uv.lock in editorconfig and disable PYTHON_PYLINT/PYRIGHT in mega-linter Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com> * fix: update outdated comment in mega-linter config Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com> * fix: use uv instead of pip to install deps in mega-linter config Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: ivuorinen <11024+ivuorinen@users.noreply.github.com>
16 lines
359 B
YAML
16 lines
359 B
YAML
---
|
|
# MegaLinter configuration
|
|
# https://megalinter.io/latest/configuration/
|
|
|
|
# Disable linters that are replaced by uv-based workflows
|
|
DISABLE_LINTERS:
|
|
- PYTHON_PYLINT
|
|
- PYTHON_PYRIGHT
|
|
|
|
# Install Python dependencies before linting using uv
|
|
PRE_COMMANDS:
|
|
- command: pip install uv
|
|
cwd: workspace
|
|
- command: uv sync --all-groups
|
|
cwd: workspace
|