AI-powered lint error detection and fixing using aider.chat
Project description
Aider Lint Fixer
Automated lint error detection and fixing powered by aider.chat and AI
Aider Lint Fixer is an intelligent tool that automatically detects lint errors in your codebase and fixes them using AI-powered code generation through aider.chat.
๐ Current Version: 2.0.2
๐ See CHANGELOG.md for complete version history and GitHub Releases for detailed release notes
โจ Features
๐ง AI-Powered Intelligence
- ๐ Native Lint Detection: Automatically discovers and integrates with your project's existing lint configurations
- โ ๏ธ Pre-Lint Risk Assessment: Analyzes codebase health before attempting automated fixes
- ๐ค Intelligent Force Mode: ML-powered force mode with confidence-based auto-forcing and intelligent batching
- ๐ฐ Cost Monitoring: Real-time tracking and control of LLM API costs with budget limits
- ๐ AST-Based Analysis: Deep structural and dependency analysis for better fix quality
- ๐ Advanced Analytics: Control flow tracking, convergence analysis, and comprehensive metrics
๐ Enhanced Interactive Mode & Progress Tracking
- ๐ฏ Enhanced Interactive Mode: Per-error review with override capabilities for "unfixable" errors
- ๐ Progress Tracking: Visual progress bars and real-time metrics for 100+ error projects
- โก Session Recovery: Resume interrupted sessions with
--resume-session - ๐ง Force Mode: Override all classifications with safety confirmations
- ๐ Community Learning: User choices improve future error classifications
- ๐ Performance Metrics: Files/min, errors/min, success rates, and ETA calculations
- ๐พ Progress Persistence: Automatic saving and recovery for long-running operations
๐ง Intelligent Learning System
- ๐ง Enhanced Learning: 46.1% fixability rate (up from 0.0% in previous versions)
- โก High-Performance: Aho-Corasick pattern matching for sub-millisecond classification
- ๐ฏ TypeScript Projects: Smart ESLint integration with project-specific configurations
- ๐ฆ Easy Setup:
pip install aider-lint-fixer[learning]includes all dependencies - ๐ Auto-Detection: Automatically detects
.eslintrc.js,tsconfig.json, npm scripts - ๐ 392+ Rules: Auto-scraped from official linter documentation
๐ ๏ธ Core Features
- ๐ Python Support: Flake8, Pylint with profile support (basic/strict)
- ๐จ Node.js Support: ESLint, JSHint, Prettier with comprehensive error detection
- ๐ Ansible Support: ansible-lint with production-ready profiles
- ๐ค AI-Powered Fixing: Uses aider.chat with multiple LLM providers
- ๐ฏ Smart Error Analysis: Categorizes and prioritizes errors for optimal fixing
- ๐ข Enterprise Scalability: Handles 200+ lint issues with intelligent batching
- โ๏ธ Profile System: Basic (development) vs Strict (production) configurations
- ๐ Enhanced Progress Tracking: Visual progress bars for large projects (100+ errors)
- ๐ฎ Interactive Modes: Standard and enhanced interactive error review
- ๐พ Session Management: Save, resume, and recover interrupted operations
๐ Supported Linter Versions
Ansible Linters
| Linter | Tested Version | Supported Versions | Profile Support |
|---|---|---|---|
| ansible-lint | 25.6.1 / 6.22.2 / 24.12.2 |
All versions via ANSIBLE_LINT_VERSION | โ basic, production |
Python Linters
| Linter | Tested Version | Supported Versions | Profile Support |
|---|---|---|---|
| flake8 | 7.3.0 |
7.3.0, 7.2.x, 7.1.x, 7.0.x, 6.x |
โ basic, strict |
| pylint | 3.3.7 |
3.3.7, 3.3.x, 3.2.x, 3.1.x, 3.0.x, 2.x |
โ basic, strict |
Node.js Linters
| Linter | Tested Version | Supported Versions | Profile Support |
|---|---|---|---|
| ESLint | 8.57.1 |
8.57.1, 8.57.x, 8.5.x, 8.x, 7.x |
โ basic, strict |
| JSHint | 2.13.6 |
2.13.6, 2.13.x, 2.1.x, 2.x |
โ basic, strict |
| Prettier | 3.6.2 |
3.6.2, 3.6.x, 3.x, 2.x |
โ basic, strict |
Version Compatibility Notes
- Tested Version: Explicitly tested and validated in our CI/CD
- Supported Versions: Expected to work based on API compatibility
- Profile Support: Configurable strictness levels for different environments
๐ข Enterprise & RHEL Compatibility
Ansible-lint Multi-Version Support addresses the major version compatibility issues between enterprise environments and the latest container versions:
| Environment | ansible-lint | ansible-core | Usage |
|---|---|---|---|
| Latest (Technology Preview) | 25.6.1 | 2.19.0 | ANSIBLE_LINT_VERSION=latest |
| Enterprise/RHEL 9 | 6.22.2 | 2.15.13 | ANSIBLE_LINT_VERSION=enterprise |
| RHEL 10 Compatible | 24.12.2 | 2.18.8 | ANSIBLE_LINT_VERSION=rhel10 |
Why This Matters:
- RHEL 10 Incompatibility: ansible-core 2.19 is NOT supported on RHEL 10
- Enterprise Standards: Many organizations standardize on ansible-lint 6.x
- Consistency: Ensures results match your local development environment
Container Usage Examples:
# Use enterprise-compatible version (default for RHEL environments)
podman run -e ANSIBLE_LINT_VERSION=enterprise \
-v $(pwd):/workspace:Z quay.io/takinosh/aider-lint-fixer
# Use RHEL 10 compatible version
podman run -e ANSIBLE_LINT_VERSION=rhel10 \
-v $(pwd):/workspace:Z quay.io/takinosh/aider-lint-fixer
# Use latest version (Technology Preview only)
podman run -e ANSIBLE_LINT_VERSION=latest \
-v $(pwd):/workspace:Z quay.io/takinosh/aider-lint-fixer
๐ Quick Start
Prerequisites
- Python 3.11+
- aider.chat installed (
pip install aider-chat) - DeepSeek API key from platform.deepseek.com
Installation
Option 1: Docker (Recommended for CI/CD)
# Use pre-built Docker image from quay.io
docker run --rm -v $(pwd):/workspace:ro quay.io/takinosh/aider-lint-fixer:latest --help
# Or use with the convenience script
./scripts/containers/docker-run.sh --linters flake8,eslint
Option 2: PyPI Package
# Install aider-lint-fixer with enhanced learning features (quote for zsh compatibility)
pip install "aider-lint-fixer[learning]"
๐ Installation
Prerequisites
- Python 3.11 or higher
- Git
- pip3 (usually included with Python)
- Node.js/npm (for Node.js linters)
- Supported platforms: Linux, macOS (Windows has limited support)
๐ฆ Quick Installation (PyPI)
# Install from PyPI (recommended)
pip install aider-lint-fixer
# Latest v1.9.0: Install with community issue reporting and enhanced workflows
pip install aider-lint-fixer[community]
# ๐ v1.8.0: Install with enhanced interactive and progress tracking
pip install aider-lint-fixer[progress]
# ๐ง v1.7.0: Install with learning features (recommended for 46.1% fixability rate)
pip install aider-lint-fixer[learning]
# Install with all optional features (includes community + progress + learning)
pip install aider-lint-fixer[all]
# Verify installation
aider-lint-fixer --version
๐ง Development Installation (Git + Virtual Environment)
1. Clone and Set Up Virtual Environment
# Clone the repository
git clone https://github.com/tosin2013/aider-lint-fixer.git
cd aider-lint-fixer
# Create virtual environment
python3 -m venv venv
# Activate virtual environment (Linux/macOS)
source venv/bin/activate
# Upgrade pip
pip3 install --upgrade pip
2. Install aider-lint-fixer
# Install in development mode (recommended for latest features)
pip3 install -e .
# Install dependencies
pip3 install -r requirements.txt
3. Install Required Linters
# Python linters
pip3 install flake8==7.3.0 pylint==3.3.7
# Ansible linters
pip3 install ansible-lint==25.6.1
# Node.js linters (requires Node.js/npm)
npm install -g eslint@8.57.1 jshint@2.13.6 prettier@3.6.2
4. Verify Installation
# Check version
python3 -m aider_lint_fixer --version
# Check supported linters
./scripts/check_supported_versions.sh
๐ณ Alternative Installation Methods
Install from Git (Latest Development)
# Install directly from Git (latest development version)
pip install git+https://github.com/tosin2013/aider-lint-fixer.git
# With virtual environment (recommended for development)
python3 -m venv aider-env && source aider-env/bin/activate && pip install git+https://github.com/tosin2013/aider-lint-fixer.git
Install from Source (Development)
git clone https://github.com/tosin2013/aider-lint-fixer.git
cd aider-lint-fixer
python3 -m venv venv && source venv/bin/activate
pip3 install -e .
โก Quick Start (5 Minutes)
# 1. Clone and setup
git clone https://github.com/tosin2013/aider-lint-fixer.git
cd aider-lint-fixer
python3 -m venv venv && source venv/bin/activate
# 2. Install
pip3 install -e . && pip3 install -r requirements.txt
# 3. Install linters (choose your language)
pip3 install flake8==7.3.0 pylint==3.3.7 ansible-lint==25.6.1
npm install -g eslint@8.57.1 jshint@2.13.6 prettier@3.6.2
# 4. Setup environment
cp .env.example .env
# Edit .env and add your API key
# 5. Test installation
python3 -m aider_lint_fixer --help
๐ง Environment Setup
API Key Configuration
# Run the setup script (recommended)
./setup_env.sh
# Or manually create .env file
cp .env.example .env
# Edit .env and add your DeepSeek API key
# DEEPSEEK_API_KEY=your_actual_api_key_here
# Export environment variables
export $(cat .env | grep -v '^#' | xargs)
Verify Your Setup
# Check all supported linter versions
./scripts/check_supported_versions.sh
# Test with a sample project
python3 -m aider_lint_fixer . --linters flake8 --dry-run --verbose
๐ง Troubleshooting Installation
Common Issues and Solutions
1. Python Version Issues
# Check Python version
python3 --version # Should be 3.11+
# If python3 not found, try:
python --version # On some systems
2. Virtual Environment Issues
# If venv creation fails:
sudo apt-get install python3-venv # Ubuntu/Debian
brew install python3 # macOS
# Alternative virtual environment tools:
pip3 install virtualenv
virtualenv venv
3. Permission Issues
# If pip install fails with permissions:
pip3 install --user -e .
# Or use virtual environment (recommended):
python3 -m venv venv && source venv/bin/activate
4. Node.js Linter Issues
# Install Node.js if missing:
# Ubuntu/Debian:
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt-get install -y nodejs
# macOS:
brew install node
# Verify installation:
node --version && npm --version
5. Linter Version Conflicts
# Check current versions:
./scripts/check_supported_versions.sh
# Install specific versions:
pip3 install flake8==7.3.0 --force-reinstall
npm install -g eslint@8.57.1 --force
Getting Help
- Complete installation guide: See
docs/INSTALLATION_GUIDE.md - Automated installation: Run
curl -fsSL https://raw.githubusercontent.com/tosin2013/aider-lint-fixer/main/scripts/install.sh | bash - Check supported versions:
./scripts/check_supported_versions.sh - Verbose output: Add
--verboseto any command - Debug mode: Set
DEBUG=1environment variable - Issues: Report at GitHub Issues
Basic Usage
# Test on a small project first
python -m aider_lint_fixer /path/to/your/project --max-files 1
# Run on your project
python -m aider_lint_fixer /path/to/your/project
# Limit scope for large projects
python -m aider_lint_fixer /path/to/your/project --max-files 5 --max-errors 10
# Verbose output for debugging
python -m aider_lint_fixer /path/to/your/project --verbose
๐ Community Issue Reporting (v1.9.0)
Transform your successful fixes into community improvements:
# Enhanced interactive mode with community reporting
aider-lint-fixer --enhanced-interactive --linters ansible-lint
# After successful overrides, system prompts:
# "Would you like to help improve the system by creating community issues?"
# Browser opens with pre-filled GitHub issue for community benefit
Community Features:
- ๐ฏ Automatic issue generation: Successful override patterns become GitHub issues
- ๐ Community learning: Your fixes help improve classification for everyone
- ๐ Pattern analysis: System identifies errors that should be reclassified
- ๐ One-click contribution: Pre-filled GitHub issues with detailed analysis
- ๐ Continuous improvement: Higher automatic fix rates through shared knowledge
๐ฏ Enhanced Interactive Mode (v1.8.0)
Perfect for reviewing and overriding error classifications:
# Enhanced interactive mode - review each error individually
python -m aider_lint_fixer --enhanced-interactive --linters ansible-lint
# Force mode - attempt to fix ALL errors (use with caution)
python -m aider_lint_fixer --force --linters flake8
# Standard interactive mode - confirm before starting
python -m aider_lint_fixer --interactive --linters pylint
Enhanced Interactive Features:
- ๐ฏ Per-error decisions: Fix, skip, or abort for each error
- โ ๏ธ Override "unfixable" errors: With proper warnings and confirmations
- ๐ Community learning: Your choices improve future classifications
- ๐ Confidence scoring: Rate your confidence to help the learning system
๐ Progress Tracking for Large Projects (v1.8.0)
Automatic enhanced tracking for projects with 100+ lint errors:
# Large projects automatically get enhanced progress tracking
python -m aider_lint_fixer --linters ansible-lint # 100+ errors detected
# Install with progress tracking support
pip install aider-lint-fixer[progress]
# Session management
python -m aider_lint_fixer --list-sessions
python -m aider_lint_fixer --resume-session progress_1234567890
Progress Tracking Features:
- ๐ Visual progress bars: Real-time file and error progress
- โก Performance metrics: Files/min, errors/min, success rates
- ๐ Time estimation: ETA calculations for completion
- ๐พ Session persistence: Automatic saving and recovery
- ๐ Resume capability: Continue interrupted operations
Example Output for Large Projects:
๐ Large Project Detected (250 errors)
๐ Files: โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ 8/10 [80%]
๐ง Errors: โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ 200/250 [80%]
โก Real-time Status:
Processing rate: 2.5 files/min, 62.5 errors/min
Success rate: 85.2% (213/250)
ETA: 14:32:15
๐ Supported Linters
Python
- flake8 - Style guide enforcement
- pylint - Code analysis and quality
- black - Code formatting
- isort - Import sorting
- mypy - Type checking
JavaScript/TypeScript
- eslint - Linting and code quality
- prettier - Code formatting
Go
- golint - Go linting
- gofmt - Go formatting
- go vet - Static analysis
Rust
- rustfmt - Rust formatting
- clippy - Rust linting
Ansible
- ansible-lint - Ansible playbook linting
โ๏ธ Configuration
Create a .aider-lint-fixer.yml file in your project root:
# LLM Configuration
llm:
provider: "deepseek" # Options: deepseek, openrouter, ollama
model: "deepseek/deepseek-chat"
fallback_providers:
- "openrouter"
- "ollama"
# Linter Configuration
linters:
auto_detect: true
enabled:
- flake8
- eslint
- golint
- rustfmt
- ansible-lint
# Aider Configuration
aider:
auto_commit: false
backup_files: true
max_retries: 3
# Project Settings
project:
exclude_patterns:
- "*.min.js"
- "node_modules/"
- "__pycache__/"
- ".git/"
๐ฏ Command Line Options
python -m aider_lint_fixer [PROJECT_PATH] [OPTIONS]
Options:
--config, -c PATH Path to configuration file
--llm TEXT LLM provider (deepseek, openrouter, ollama)
--model TEXT Specific model to use
--linters TEXT Comma-separated list of linters to run
--max-files INTEGER Maximum number of files to process
--max-errors INTEGER Maximum errors to fix per file
--dry-run Show what would be fixed without making changes
--interactive Confirm each fix before applying
--verbose, -v Enable verbose output
--log-file PATH Path to log file
--no-banner Disable banner output
--help Show this message and exit
--stats Show learning statistics and exit
๐ง Learning Features
Intelligent Error Classification
Aider-lint-fixer includes an advanced learning system that improves accuracy over time by learning from successful and failed fix attempts.
๐ฆ Installation for Learning
# Install with learning features (includes scikit-learn)
pip install aider-lint-fixer[learning]
# Or install learning dependencies manually
pip install scikit-learn>=1.0.0 requests>=2.25.0 beautifulsoup4>=4.9.0 pyahocorasick>=1.4.0
๐ How Learning Works
- Automatic: Learning happens automatically during normal operation
- No configuration needed: Works out of the box once dependencies are installed
- Language-specific: Separate models for Python, JavaScript, Ansible, etc.
- Persistent: Learning data survives between runs
๐ Monitor Learning Progress
# View learning statistics
aider-lint-fixer --stats
# View in JSON format
aider-lint-fixer --stats --output-format json
# Detailed cache management
python -m aider_lint_fixer.cache_cli --action stats
๐ฏ Learning Benefits
- Improved Accuracy: 46.1% fixability rate on real projects
- Faster Classification: Sub-millisecond error analysis
- Project-Specific: Learns patterns specific to your codebase
- Conservative Approach: Avoids false positives
๐ Learning Data Storage
Learning data is stored in .aider-lint-cache/:
.aider-lint-cache/
โโโ ansible_training.json # Ansible-specific learning
โโโ python_training.json # Python-specific learning
โโโ javascript_training.json # JavaScript-specific learning
โโโ scraped_rules.json # Web-scraped rule knowledge
๐งน Cache Management
# Clean old learning data (30+ days)
python -m aider_lint_fixer.cache_cli --action cleanup --max-age-days 30
# Export learning data for backup
python -m aider_lint_fixer.cache_cli --action export --file backup.json
# Import learning data from backup
python -m aider_lint_fixer.cache_cli --action import --file backup.json
๐ง Troubleshooting Learning Issues
Problem: "Found 0 fixable errors (0.0% of X total baseline errors)"
This usually indicates missing learning dependencies. Check your setup:
# Quick diagnosis
python scripts/check_learning_setup.py
# Or check via stats
aider-lint-fixer --stats
Common Issues:
- Missing scikit-learn:
pip install aider-lint-fixer[learning] - Missing Aho-Corasick: Causes "using fallback pattern matching" warning
- No scraped rules: Tool will auto-create them if web dependencies are available
Expected vs Actual (v1.7.0):
# โ Without learning dependencies (v1.6.0 and earlier)
Found 0 fixable errors (0.0% of 58 total baseline errors)
# โ
With learning dependencies (v1.7.0+)
Found 27 fixable errors (46.1% of 58 total baseline errors)
๐ฏ v1.7.0 Performance: This release resolves the critical 0.0% fixability issue!
๐ Examples
Python Project
# Focus on Python linters
python -m aider_lint_fixer --linters flake8,black,isort
# Fix formatting issues only
python -m aider_lint_fixer --linters black,isort --max-errors 20
JavaScript Project
# Focus on JavaScript linters
python -m aider_lint_fixer --linters eslint,prettier
# Interactive fixing for complex project
python -m aider_lint_fixer --linters eslint --interactive
Ansible Project
# Focus on Ansible linting
python -m aider_lint_fixer --linters ansible-lint
# Dry run to see Ansible issues
python -m aider_lint_fixer --linters ansible-lint --dry-run
# Enhanced interactive mode for Ansible (v1.8.0)
python -m aider_lint_fixer --enhanced-interactive --linters ansible-lint
Large Project Examples (v1.8.0)
# Large project with automatic progress tracking
python -m aider_lint_fixer --linters flake8,pylint # 100+ errors
# Force mode for aggressive fixing (use with caution)
python -m aider_lint_fixer --force --max-errors 50 --linters eslint
# Resume interrupted session
python -m aider_lint_fixer --list-sessions
python -m aider_lint_fixer --resume-session progress_1234567890
# Enhanced interactive with progress tracking
python -m aider_lint_fixer --enhanced-interactive --linters ansible-lint
Community Contribution Examples (v1.9.0)
# Override "unfixable" errors and contribute to community
python -m aider_lint_fixer --enhanced-interactive --linters ansible-lint
# โ Override yaml[trailing-spaces] classification
# โ System records successful fix pattern
# โ Prompts to create GitHub issue for community benefit
# Example community workflow:
# 1. User overrides "unfixable" error โ Success
# 2. System analyzes pattern โ Identifies improvement opportunity
# 3. GitHub issue generated โ "Enhancement: Improve ansible-lint yaml[trailing-spaces] classification"
# 4. Community benefits โ Higher automatic fix rates for everyone
# Install with community features
pip install aider-lint-fixer[community]
๐ง How It Works
- Project Detection: Automatically scans your project to identify languages, package managers, and lint configurations
- Lint Execution: Runs appropriate linters and collects error reports
- Error Analysis: Categorizes errors by type and complexity, prioritizes them for fixing
- AI-Powered Fixing: Uses aider.chat with your chosen LLM to generate and apply fixes
- Verification: Re-runs linters to verify fixes and reports success rates
- Community Learning (v1.9.0): Records successful overrides and generates GitHub issues to improve the system for everyone
๐ ๏ธ Development
This project includes a comprehensive Makefile for development tasks:
# Show all available commands
make help
# Setup development environment
make dev-setup
# Code quality checks
make lint # Run linters
make format # Format code with black and isort
make type-check # Run mypy type checking
# Testing
make test # Run tests
make test-coverage # Run tests with coverage
# Security
make security # Run security checks
make audit # Comprehensive security audit
# Build and package
make build # Build distribution packages
make clean # Clean build artifacts
# Self-testing (test the tool on itself!)
make self-test # Run aider-lint-fixer on its own code
# Complete quality assurance
make qa # Run all quality checks
make ci # Full CI pipeline
๐ค Automated Dependency Management
This project uses Dependabot for automated dependency updates and security monitoring:
๐ Update Schedule
- Python dependencies: Weekly (Mondays) -
pipecosystem - Node.js dependencies: Weekly (Tuesdays) -
npmecosystem - GitHub Actions: Weekly (Wednesdays) - Workflow dependencies
- Docker images: Weekly (Thursdays) - Base image updates
- Security updates: Immediate - Critical vulnerabilities
๐ Auto-Merge Policy
- โ Security updates: Auto-merged after tests pass
- โ Patch updates: Auto-merged after validation
- โ Testing dependencies: Auto-merged (pytest, coverage, mock)
- โ Code quality tools: Auto-merged (black, isort, flake8, mypy)
- โ GitHub Actions: Auto-merged (actions/, github/)
- โ ๏ธ Major updates: Require manual review
- โ ๏ธ Core dependencies: Require manual review (aider-chat, click)
๐ Weekly Health Checks (Sundays)
- ๐ Security audit: Vulnerability scanning with
safety,bandit,pip-audit - ๐ Outdated dependencies: Tracking and automated PR creation
- ๐ License compliance: Monitoring for license compatibility
- ๐ Dependency conflicts: Detecting version incompatibilities
๐ก๏ธ Security Features
- Immediate security alerts: Critical vulnerabilities trigger instant PRs
- Automated testing: All updates tested before merge
- License monitoring: GPL and unknown licenses flagged
- Conflict detection: Dependency version conflicts identified
๐ค Contributing
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
๐ง Development Setup for Contributors
Quick Setup
# Automated installation for contributors
curl -fsSL https://raw.githubusercontent.com/tosin2013/aider-lint-fixer/main/scripts/install.sh | bash
# Or manual setup
git clone https://github.com/tosin2013/aider-lint-fixer.git
cd aider-lint-fixer
python3 -m venv venv && source venv/bin/activate
pip3 install -e . && pip3 install -r requirements.txt
Install Supported Linter Versions
# Check your current versions
./scripts/check_supported_versions.sh
# Install supported versions
pip3 install flake8==7.3.0 pylint==3.3.7 ansible-lint==25.6.1
npm install -g eslint@8.57.1 jshint@2.13.6 prettier@3.6.2
๐ Version Testing
# Test Python linters
./scripts/version_tests/python_linters_test.sh
# Test Node.js linters
./scripts/version_tests/nodejs_linters_test.sh
# Run integration tests
python -m pytest tests/ -v
๐ Version Reference
- Supported Versions: See table above or
aider_lint_fixer/supported_versions.py - Testing Guide:
docs/LINTER_TESTING_GUIDE.md - Node.js Guide:
docs/NODEJS_LINTERS_GUIDE.md
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐จโ๐ป Author
Tosin Akinosho
- GitHub: @tosin2023
- Project: aider-lint-fixer
๐ Acknowledgments
- aider.chat for the amazing AI-powered code editing capabilities
- The open-source community for the various linters and tools that make this project possible
- All the LLM providers (DeepSeek, OpenRouter, Ollama) for making AI accessible
๐ Documentation
For detailed usage instructions, configuration options, and troubleshooting, see:
Made with โค๏ธ by Tosin Akinosho
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aider_lint_fixer-2.0.3.tar.gz.
File metadata
- Download URL: aider_lint_fixer-2.0.3.tar.gz
- Upload date:
- Size: 280.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cabe983b205bcb8418ac60889bffe0f16215ce5352c56e36d53793b54f47c380
|
|
| MD5 |
053e133f23b5eaed570f8d3a4c1fbf5e
|
|
| BLAKE2b-256 |
109b2dbdb95909aa798200535948806cc7100cb0c8237083fee365742c50e816
|
File details
Details for the file aider_lint_fixer-2.0.3-py3-none-any.whl.
File metadata
- Download URL: aider_lint_fixer-2.0.3-py3-none-any.whl
- Upload date:
- Size: 185.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acb89940d2d193e8f9f138ca3b234de25181c4b12a08b2b5da01748a2cf33458
|
|
| MD5 |
1486eafdadca5dd85769ed7427699d24
|
|
| BLAKE2b-256 |
b7bd4aecca1606569d9937c4789a85e3b5b0de904e45130b55c5c07b5d4cfb91
|