├── .github └── workflows │ ├── build.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── pylint_to_ruff ├── __init__.py ├── __main__.py ├── cli.py ├── pylint.py ├── ruff.py └── ruff_aliases.py ├── pyproject.toml ├── tests ├── test_smoke.py └── victim │ └── .pylintrc └── update_ruff_aliases.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | .*cache 3 | /build 4 | /dist 5 | /issue-970.json 6 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/README.md -------------------------------------------------------------------------------- /pylint_to_ruff/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.3.0" 2 | -------------------------------------------------------------------------------- /pylint_to_ruff/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/pylint_to_ruff/__main__.py -------------------------------------------------------------------------------- /pylint_to_ruff/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/pylint_to_ruff/cli.py -------------------------------------------------------------------------------- /pylint_to_ruff/pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/pylint_to_ruff/pylint.py -------------------------------------------------------------------------------- /pylint_to_ruff/ruff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/pylint_to_ruff/ruff.py -------------------------------------------------------------------------------- /pylint_to_ruff/ruff_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/pylint_to_ruff/ruff_aliases.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/tests/test_smoke.py -------------------------------------------------------------------------------- /tests/victim/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/tests/victim/.pylintrc -------------------------------------------------------------------------------- /update_ruff_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akx/pylint-to-ruff/HEAD/update_ruff_aliases.py --------------------------------------------------------------------------------