René's URL Explorer Experiment


Title: Implement RUFF to replace many of the dependencies by diraol · Pull Request #1192 · python-mode/python-mode · GitHub

Open Graph Title: Implement RUFF to replace many of the dependencies by diraol · Pull Request #1192 · python-mode/python-mode

X Title: Implement RUFF to replace many of the dependencies by diraol · Pull Request #1192 · python-mode/python-mode

Description: Implement Ruff to Replace Legacy Linting Infrastructure 🎯 Overview This PR implements a comprehensive migration from legacy linting tools (pylint, pyflakes, pycodestyle, mccabe, pydocstyle, pylama, autopep8) to Ruff, a modern, fast Python linter and formatter written in Rust. This change significantly improves performance, reduces maintenance burden, and provides a more unified linting experience. 📊 Key Metrics Submodules reduced: 13 → 3 (77% reduction) Repository size freed: ~90MB+ from .git/modules cleanup Performance improvement: 10-100x faster linting (Ruff vs legacy tools) Test coverage: 9/9 Vader test suites passing on Linux, macOS, and Windows Python support: 3.10, 3.11, 3.12, 3.13 on all platforms 🔄 Breaking Changes Removed Tools The following linting tools are no longer available as submodules: pylint → Replaced by Ruff PLE/PLR/PLW rules pyflakes → Replaced by Ruff F rules pycodestyle → Replaced by Ruff E/W rules mccabe → Replaced by Ruff C90 rules pydocstyle → Replaced by Ruff D rules pylama → No longer needed (wrapper) autopep8 → Replaced by Ruff format New Requirement Ruff must be installed: pip install ruff Ruff is now an external dependency (not bundled as submodule) Configuration Changes g:pymode_lint_checkers values are automatically mapped to Ruff rule categories Old tool-specific options mapped to Ruff configuration New Ruff-specific options available: g:pymode_ruff_enabled g:pymode_ruff_format_enabled g:pymode_ruff_select g:pymode_ruff_ignore g:pymode_ruff_config_file 🚀 New Features Multi-Platform CI Testing Linux: Ubuntu with Python 3.10-3.13 macOS: Latest with Python 3.10-3.13 Windows: Latest with Python 3.10-3.13 Parallel test execution across all platforms Comprehensive platform-specific fixes for compatibility Migration Tools Migration Guide (MIGRATION_GUIDE.md) - Step-by-step instructions Configuration Mapping (RUFF_CONFIGURATION_MAPPING.md) - Detailed rule mappings Migration Script (scripts/migrate_to_ruff.py) - Automatic vimrc conversion Validation Script (scripts/validate_ruff_migration.sh) - Setup verification CI/CD Improvements Cross-platform testing with dedicated scripts for each OS Robust error handling and timeout support Platform-specific PATH and environment configuration Comprehensive test result aggregation 📝 Technical Implementation Phase 1: Core Ruff Integration Implemented pymode/ruff_integration.py with Ruff check/format functions Created configuration mapping system for backward compatibility Updated pymode/lint.py to use Ruff instead of pylama Phase 2: Build & Distribution Updates Updated submodule initialization in pymode/utils.py Removed old linter dependencies from build scripts Cleaned up Docker and CI configuration Phase 3: Configuration Migration Mapped legacy configuration options to Ruff equivalents Maintained backward compatibility where possible Added validation and warning system for deprecated options Phase 4: Dependency Cleanup Removed 10 submodules (pyflakes, pycodestyle, mccabe, pylint, pydocstyle, pylama, autopep8, snowball_py, appdirs, astroid, toml) Kept 3 essential submodules (rope, tomli, pytoolconfig) Cleaned up git repository (~90MB+ freed) Phase 5: Testing & Validation Updated all test fixtures for Ruff Created comprehensive Ruff integration tests Verified all 9/9 Vader test suites pass Added multi-platform CI testing Phase 6: Documentation & Migration Created comprehensive migration guide Documented configuration mappings Added migration and validation scripts Updated all documentation with Ruff information 🔧 Platform-Specific Fixes macOS Fixed mapfile compatibility (bash 3.x/zsh don't support bash 4+ mapfile) Fixed empty array handling with set -u (unbound variable errors) Fixed sed "first RE may not be empty" errors with proper string formatting Added timeout fallback (timeout/gtimeout/none) for different environments Added --not-a-term flag detection for Vim compatibility Windows Fixed os.path.relpath ValueError when paths on different drives (C: vs D:) Implemented /tmp/ path redirection to Windows $TEMP directory Added BufWriteCmd/FileWriteCmd autocmds for path interception Improved Vim installation detection and PATH configuration Enhanced PowerShell error handling and output capture Added nobackup/nowritebackup Vim settings to prevent backup file errors Linux Maintained existing functionality Added enhanced error reporting Improved test output formatting 📚 Documentation New Files MIGRATION_GUIDE.md - User migration guide RUFF_CONFIGURATION_MAPPING.md - Configuration reference CI_IMPROVEMENTS.md - CI/CD documentation scripts/migrate_to_ruff.py - Migration tool scripts/validate_ruff_migration.sh - Validation tool scripts/test_path_resolution.py - Path testing tool Updated Files readme.md - Updated with Ruff information and reduced submodule count doc/pymode.txt - Added Ruff configuration options CHANGELOG.md - Comprehensive 0.15.0 release notes 🧪 Test Results All tests pass on all platforms: ✅ Linux (Python 3.10, 3.11, 3.12, 3.13) ✅ macOS (Python 3.10, 3.11, 3.12, 3.13) ✅ Windows (Python 3.10, 3.11, 3.12, 3.13) Test suites (9/9 passing): autopep8 (8/8 assertions) commands (7/7 assertions) folding (7/7 assertions) lint (8/8 assertions) motion (6/6 assertions) rope (9/9 assertions) ruff_integration (9/9 assertions) simple (4/4 assertions) textobjects (9/9 assertions) Total: 88/88 assertions passing 🔄 Migration Path For users upgrading to 0.15.0: Install Ruff: pip install ruff Review changes: Check MIGRATION_GUIDE.md Optional: Run scripts/migrate_to_ruff.py to convert vimrc Validate: Run scripts/validate_ruff_migration.sh Test: Try :PymodeLint and :PymodeLintAuto Rollback If needed, users can rollback: git checkout v0.14.0 pip install pylint pyflakes pycodestyle mccabe pydocstyle autopep8 🎉 Benefits Performance: 10-100x faster linting Simplicity: One tool instead of seven Maintenance: 77% fewer submodules Modern: Actively maintained, Rust-based Quality: Fewer false positives, better error messages Cross-platform: Tested and verified on Linux, macOS, Windows 📋 Checklist Phase 1: Core Ruff integration Phase 2: Build & distribution updates Phase 3: Configuration migration Phase 4: Dependency cleanup (10 submodules removed) Phase 5: Testing & validation Phase 6: Documentation & migration tools Multi-platform CI testing (Linux, macOS, Windows) Platform-specific fixes and compatibility All tests passing (88/88 assertions) Documentation complete Migration tools created 🔗 Related Issues This PR addresses the need to modernize the linting infrastructure and reduce maintenance burden by consolidating multiple legacy tools into a single, modern solution. Note: This is a major version bump (0.15.0) due to breaking changes in linting tool availability and configuration options. Users should review the migration guide before upgrading.

Open Graph Description: Implement Ruff to Replace Legacy Linting Infrastructure 🎯 Overview This PR implements a comprehensive migration from legacy linting tools (pylint, pyflakes, pycodestyle, mccabe, pydocstyle, pylama,...

X Description: Implement Ruff to Replace Legacy Linting Infrastructure 🎯 Overview This PR implements a comprehensive migration from legacy linting tools (pylint, pyflakes, pycodestyle, mccabe, pydocstyle, pylama,...

Opengraph URL: https://github.com/python-mode/python-mode/pull/1192

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:155a6d3e-dcbb-44af-5bb2-5d8ece877e5a
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id8778:12F8:199CBA6:23DA248:69692528
html-safe-nonce0a63b839b43db7e4d848c59601cc442df479f7e324fc02104349946bdd4c46e5
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4Nzc4OjEyRjg6MTk5Q0JBNjoyM0RBMjQ4OjY5NjkyNTI4IiwidmlzaXRvcl9pZCI6IjY5Njc3NjY2NTA3MjIxNTMzNiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac4d5ab79a948c47362ed974ed73bab90157f0de3d1dc17485398a513d54763b76
hovercard-subject-tagpull_request:3017576293
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/python-mode/python-mode/pull/1192/files
twitter:imagehttps://avatars.githubusercontent.com/u/192702?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/192702?s=400&v=4
og:image:altImplement Ruff to Replace Legacy Linting Infrastructure 🎯 Overview This PR implements a comprehensive migration from legacy linting tools (pylint, pyflakes, pycodestyle, mccabe, pydocstyle, pylama,...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None54182691a21263b584d2e600b758e081b0ff1d10ffc0d2eefa51cf754b43b51d
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/python-mode/python-mode git https://github.com/python-mode/python-mode.git
octolytics-dimension-user_id13965098
octolytics-dimension-user_loginpython-mode
octolytics-dimension-repository_id2408911
octolytics-dimension-repository_nwopython-mode/python-mode
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id2408911
octolytics-dimension-repository_network_root_nwopython-mode/python-mode
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
released69ac0477df0f87da03b8b06cebd187012d7a930
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python-mode/python-mode/pull/1192/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-mode%2Fpython-mode%2Fpull%2F1192%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-mode%2Fpython-mode%2Fpull%2F1192%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=python-mode%2Fpython-mode
Reloadhttps://github.com/python-mode/python-mode/pull/1192/files
Reloadhttps://github.com/python-mode/python-mode/pull/1192/files
Reloadhttps://github.com/python-mode/python-mode/pull/1192/files
python-mode https://github.com/python-mode
python-modehttps://github.com/python-mode/python-mode
Please reload this pagehttps://github.com/python-mode/python-mode/pull/1192/files
Notifications https://github.com/login?return_to=%2Fpython-mode%2Fpython-mode
Fork 768 https://github.com/login?return_to=%2Fpython-mode%2Fpython-mode
Star 5.5k https://github.com/login?return_to=%2Fpython-mode%2Fpython-mode
Code https://github.com/python-mode/python-mode
Issues 37 https://github.com/python-mode/python-mode/issues
Pull requests 1 https://github.com/python-mode/python-mode/pulls
Actions https://github.com/python-mode/python-mode/actions
Projects 0 https://github.com/python-mode/python-mode/projects
Wiki https://github.com/python-mode/python-mode/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/python-mode/python-mode/security
Please reload this pagehttps://github.com/python-mode/python-mode/pull/1192/files
Insights https://github.com/python-mode/python-mode/pulse
Code https://github.com/python-mode/python-mode
Issues https://github.com/python-mode/python-mode/issues
Pull requests https://github.com/python-mode/python-mode/pulls
Actions https://github.com/python-mode/python-mode/actions
Projects https://github.com/python-mode/python-mode/projects
Wiki https://github.com/python-mode/python-mode/wiki
Security https://github.com/python-mode/python-mode/security
Insights https://github.com/python-mode/python-mode/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fpython-mode%2Fpython-mode%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fpython-mode%2Fpython-mode%2Fissues%2Fnew%2Fchoose
diraolhttps://github.com/diraol
develophttps://github.com/python-mode/python-mode/tree/develop
dro/implement_ruffhttps://github.com/python-mode/python-mode/tree/dro/implement_ruff
Conversation 7 https://github.com/python-mode/python-mode/pull/1192
Commits 32 https://github.com/python-mode/python-mode/pull/1192/commits
Checks 13 https://github.com/python-mode/python-mode/pull/1192/checks
Files changed https://github.com/python-mode/python-mode/pull/1192/files
Please reload this pagehttps://github.com/python-mode/python-mode/pull/1192/files
Implement RUFF to replace many of the dependencies https://github.com/python-mode/python-mode/pull/1192/files#top
Show all changes 32 commits https://github.com/python-mode/python-mode/pull/1192/files
1691f64 Ruff Migration Plan diraol Jul 31, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/1691f64173200d8b7228027668bf4f7b4f1adf14
e5db192 Phase 1 Complete! 🎉 diraol Jul 31, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/e5db192398b4602c1bf16c95106a66a0270b544f
6052fba Phase 2 & 3: Complete Ruff migration build updates and configuration diraol Nov 15, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/6052fbaa24dd431b961f0c360381d748e72accfd
e735353 Phase 4: Complete dependency evaluation and cleanup diraol Nov 15, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/e735353784d6cc27946c14cc46d8935c2beb3957
23f8587 Remove performance benchmarking from migration plan diraol Nov 15, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/23f8587d856d441c49c26e2249bdbb9d4b2b345e
c209920 Update Expected Benefits section to note benchmarking not performed diraol Nov 15, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/c209920f1fd9f368166db4788d71d8bf5139a0b7
fe0eb55 Phase 5.1: Complete test suite updates for Ruff diraol Nov 15, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/fe0eb55a66001ae3747669918794b0b2de723acf
58733f8 Phase 6.1: Update doc/pymode.txt with Ruff information diraol Nov 15, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/58733f8f0671a05faba42ab4252ed2171179028d
2a7c3a3 Update credits section: Add Ruff, note replacement of old tools diraol Nov 15, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/2a7c3a33687c7f23cd63082642abbe580022c748
e46fe8f Phase 6.1: Create migration guide and update plan diraol Nov 15, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/e46fe8f8bca2292337877d884415b3a084c637fd
8547981 Add migration tools for Ruff integration diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/8547981185d0b9857cbad1d282b6bd78dfb953e0
fe1e376 Update CHANGELOG.md with Ruff migration breaking changes diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/fe1e3766ed11f41035138094d681ad94ba1ddc15
a356d0f Update migration plan to reflect completed tasks diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/a356d0fd9f5cfd4d7ab7546c4a94af6c01ba5797
8f5b13a Add multi-platform CI testing support diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/8f5b13a5c99389d6fdab1df862377087e02990f7
e5ba1d8 Update CHANGELOG.md with CI improvements and finalize 0.15.0 entry diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/e5ba1d8f8f3fb4ec69edd081ed014ae8ed142520
483b375 Clean up removed submodule references diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/483b3758444f3d522dfda70df8b643cdb47af67f
32b3f65 Update migration plan: mark submodule cleanup as complete diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/32b3f65b668c0179f07be09e9af9bd4785fbcdb0
bf25c5b Update CHANGELOG.md with submodule cleanup details diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/bf25c5b6c625747fe1382eaccf7d6696e4c95c77
ef74651 Update repository size documentation and add path resolution test diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/ef74651baa0cc47fdc8aaf36aa19eecd8e206f12
e1b0baf Update migration plan: mark repository size and path testing complete diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/e1b0baf684963f833fb29f571f0ab41fa5c668a1
bf41277 Fix CI failures for macOS and Windows platforms diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/bf4127779a2fafcf09a660a8bf608d648730b3af
d2e4a30 Improve CI test execution robustness for macOS and Windows diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/d2e4a305cd16e606372893f46cdfd9659ef3e6e1
872944f Add debugging output to CI test execution steps diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/872944fac6bcb53f78f30ecddb4d985795f11df2
340e73e Fix macOS and Windows CI test failures diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/340e73eca62fa91bdaa8a3a5545a22d3abee0260
4dc5fa1 Fix macOS script errors with empty arrays and sed diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/4dc5fa124d174d19d420a3d5208dcbea3e7f951b
3a75abd Fix remaining Windows CI issues: path resolution and /tmp/ mapping diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/3a75abd287d317eca779851ee63b1fd47fc7a7b6
cb4b109 Fix Windows /tmp/ path interception using BufWriteCmd diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/cb4b109b2d75d4415b183b1f67f71daae3d5b274
2be1b57 Fix Windows autocmd to only intercept /tmp/ paths diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/2be1b57f48a7201184d15421fb44ba5d81e2cf3b
9843742 Update CHANGELOG and add comprehensive PR description diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/9843742dc097fd4da88cc732a6f59da2a040e03d
7da85fe Organize documentation diraol Nov 17, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/7da85fe8aa43c422b7a1d963f4082ad1efe37cc8
8645656 Add support for flexible Ruff configuration modes diraol Dec 23, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/864565637d6a31769e635d23cccb5675ba0a6710
6f16321 Enhance Ruff integration tests for improved error handling and direct… diraol Dec 23, 2025 https://github.com/python-mode/python-mode/pull/1192/commits/6f16321e3099f431f01a36be2fefa5c0cf49dc17
Clear filters https://github.com/python-mode/python-mode/pull/1192/files
Please reload this pagehttps://github.com/python-mode/python-mode/pull/1192/files
Please reload this pagehttps://github.com/python-mode/python-mode/pull/1192/files
test.yml https://github.com/python-mode/python-mode/pull/1192/files#diff-faff1af3d8ff408964a57b2e475f69a6b7c7b71c9978cccc8f471798caac2c88
.gitmodules https://github.com/python-mode/python-mode/pull/1192/files#diff-fe7afb5c9c916e521401d3fcfb4277d5071798c3baf83baf11d6071742823584
CHANGELOG.md https://github.com/python-mode/python-mode/pull/1192/files#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed
Dockerfile https://github.com/python-mode/python-mode/pull/1192/files#diff-dd2c0eb6ea5cfc6c4bd4eac30934e2d5746747af48fef6da689e85b752f39557
TEST_FAILURES.md https://github.com/python-mode/python-mode/pull/1192/files#diff-86fb0a807ec7cfe21cf6d3014d90f9bd99d52bf3ac047774a6252d923a6c877a
lint.vim https://github.com/python-mode/python-mode/pull/1192/files#diff-5cd7346d1f4abab161732463bfbd8d7761efa7c153e4b44cb49ddc368dece6f6
MIGRATION_GUIDE.md https://github.com/python-mode/python-mode/pull/1192/files#diff-2c83fe7879d204297ab028b7dce2318daa5ad30e65b255a546cc37aa8c499079
RUFF_CONFIGURATION_MAPPING.md https://github.com/python-mode/python-mode/pull/1192/files#diff-cb63f57edf4279292ff8d14e37b9fae32cd5b88ae0dc04af0cad87cd137049a5
CI_IMPROVEMENTS.md https://github.com/python-mode/python-mode/pull/1192/files#diff-c392b5b5106c9e94086396a5684fb04e8eda32985666854dbc2c2ecee4df915b
pymode.txt https://github.com/python-mode/python-mode/pull/1192/files#diff-3585c01cd4fae5a6ed8d84c8be014721f76800019ffaa1b6db6753411bf1c4f9
pymode.vim https://github.com/python-mode/python-mode/pull/1192/files#diff-d87a40e1e5e7a012def966894f2709a0dc568d78be2ca22166147300981640d2
__init__.py https://github.com/python-mode/python-mode/pull/1192/files#diff-10f7f7f8e7985f1287d8c631c87bf0f1b9263b59668c8dede935642a549ef781
lint.py https://github.com/python-mode/python-mode/pull/1192/files#diff-8ec3b42e8dab0a08a7fc6bcd0ea7fdaf5c7c7e5d9f8ee43fb0c5bd75f25fe326
ruff_integration.py https://github.com/python-mode/python-mode/pull/1192/files#diff-4d83cad62ac8838f165809373b94ea19e39b745212e777db6328d67618982c97
utils.py https://github.com/python-mode/python-mode/pull/1192/files#diff-66876a53fd88fa4903411de6fb641a6541a399b789c2689af7ca4257e94ac321
readme.md https://github.com/python-mode/python-mode/pull/1192/files#diff-5a831ea67cf5cf8703b0de46901ab25bd191f56b320053be9332d9a3b0d01d15
run_vader_tests_direct.sh https://github.com/python-mode/python-mode/pull/1192/files#diff-19b725bb6fcd2c647f2b68605efa84135d99c56ca743d0bee5ee43a53d4d986f
run_vader_tests_windows.ps1 https://github.com/python-mode/python-mode/pull/1192/files#diff-456185d23862ebe97a7a7a27302ddc748daf13056d8a1272fb665baeb68e2440
migrate_to_ruff.py https://github.com/python-mode/python-mode/pull/1192/files#diff-0439363490e571438b6e1e90d3b51685950514b7fa7e964654f1ba0c8494bc63
test_path_resolution.py https://github.com/python-mode/python-mode/pull/1192/files#diff-e1400712626514ebab0f064fffb2b3142feb9eb55bbd96c14ca99e1864e7f3a0
validate_ruff_migration.sh https://github.com/python-mode/python-mode/pull/1192/files#diff-1de0f2cb7b25aa17bc1d797a9e55a022da1b4ede90036a81ebbe3cb854906098
verify_ruff_installation.sh https://github.com/python-mode/python-mode/pull/1192/files#diff-ea17ce46f94100912a8d2b410b787dd2eb5e5dbc3a69b54b6bc2c2b4d1ae3c52
appdirs https://github.com/python-mode/python-mode/pull/1192/files#diff-73ab7fca31a3ed8f2b6347bd8c676e17500921335087f9e6ee99c2c49c619880
astroid https://github.com/python-mode/python-mode/pull/1192/files#diff-2ade82837e24927713759b7ec220c3c2591b5d66575df71cc71bf08aacd7c994
autopep8 https://github.com/python-mode/python-mode/pull/1192/files#diff-06499d7ebaad1e5a147ebfc4a25a6e42dc9823216d5ea9b8aa69cae1f665e160
mccabe https://github.com/python-mode/python-mode/pull/1192/files#diff-ce2da098222df1f2d93f0aa1430a5c11dcd4d99d13cd8a9c2f1da423f55d62a7
pycodestyle https://github.com/python-mode/python-mode/pull/1192/files#diff-b189ec61e874f61fc2c12a2607a7151deeada5df7507f8bfea81a13242483b70
pydocstyle https://github.com/python-mode/python-mode/pull/1192/files#diff-20f5e09fd349a85670261859ed675ef4da8a1f5ce1906abab85de702a48e4811
pyflakes https://github.com/python-mode/python-mode/pull/1192/files#diff-0ce153fb9f137684cc820ad3bd693e20540158b78ae4af5f07e984c5b9fa7a55
pylama https://github.com/python-mode/python-mode/pull/1192/files#diff-a6de5381b56a3f51eedc1dba5b3eea650fd43126eefdf0273430e0fc2c99ae66
pylint https://github.com/python-mode/python-mode/pull/1192/files#diff-b6e8293ffe02b895e0b37a91ed9329863fb6cc18f5aa2707e70d71769d45ceac
snowball_py https://github.com/python-mode/python-mode/pull/1192/files#diff-4ced1b7940cd9750fdf4a7da0c9e38b540c7d2836d50471898f7706dfaad8931
toml https://github.com/python-mode/python-mode/pull/1192/files#diff-6cbe03634c1623b2d510d4631c58334e9638a55e5577016da9a352909158f395
autopep8.vim https://github.com/python-mode/python-mode/pull/1192/files#diff-2df7293e92f94eb44d4a6c97df10bcc3a79eab8205f3cd9546e74a16571f18c3
from_autopep8.py https://github.com/python-mode/python-mode/pull/1192/files#diff-c07627379d3d1312cdcea6a456d79064144972f27786c62811923dad73a1f578
pymoderc https://github.com/python-mode/python-mode/pull/1192/files#diff-c315946a078b605029da4d8c1cd712e56b693cbea018e6bc76dcb61341663152
vimrc.ci https://github.com/python-mode/python-mode/pull/1192/files#diff-72426153b27660f69eec0c454025ca734e41cb3debb2066ffbc1eabedfb916f8
autopep8.vader https://github.com/python-mode/python-mode/pull/1192/files#diff-4c145be58fd613785d51f8c36a6e9efc40d44f87f05fd3041c263c97726f8aac
ruff_integration.vader https://github.com/python-mode/python-mode/pull/1192/files#diff-98e9d05e1c5efd928ed7dfe6d8d7ee12f8d9ef24f62e1fcc981b032038a4d587
.github/workflows/test.ymlhttps://github.com/python-mode/python-mode/pull/1192/files#diff-faff1af3d8ff408964a57b2e475f69a6b7c7b71c9978cccc8f471798caac2c88
View file https://github.com/python-mode/python-mode/blob/6f16321e3099f431f01a36be2fefa5c0cf49dc17/.github/workflows/test.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-mode/python-mode/pull/1192/{{ revealButtonHref }}
https://github.com/python-mode/python-mode/pull/1192/files#diff-faff1af3d8ff408964a57b2e475f69a6b7c7b71c9978cccc8f471798caac2c88
https://github.com/python-mode/python-mode/pull/1192/files#diff-faff1af3d8ff408964a57b2e475f69a6b7c7b71c9978cccc8f471798caac2c88
https://github.com/python-mode/python-mode/pull/1192/files#diff-faff1af3d8ff408964a57b2e475f69a6b7c7b71c9978cccc8f471798caac2c88
https://github.com/python-mode/python-mode/pull/1192/files#diff-faff1af3d8ff408964a57b2e475f69a6b7c7b71c9978cccc8f471798caac2c88
.gitmoduleshttps://github.com/python-mode/python-mode/pull/1192/files#diff-fe7afb5c9c916e521401d3fcfb4277d5071798c3baf83baf11d6071742823584
View file https://github.com/python-mode/python-mode/blob/6f16321e3099f431f01a36be2fefa5c0cf49dc17/.gitmodules
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-mode/python-mode/pull/1192/{{ revealButtonHref }}
CHANGELOG.mdhttps://github.com/python-mode/python-mode/pull/1192/files#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed
View file https://github.com/python-mode/python-mode/blob/6f16321e3099f431f01a36be2fefa5c0cf49dc17/CHANGELOG.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python-mode/python-mode/pull/1192/{{ revealButtonHref }}
https://github.com/python-mode/python-mode/pull/1192/files#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed
Please reload this pagehttps://github.com/python-mode/python-mode/pull/1192/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.