├── .flake8 ├── .github ├── dependabot.yml ├── issue_template.md ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── makefile ├── pyproject.toml ├── ruff_api ├── __init__.py ├── __ruff_version__.py ├── __version__.py ├── _rust.pyi ├── errors.py ├── py.typed └── tests │ ├── __init__.py │ ├── __main__.py │ └── smoke.py ├── scripts ├── ruff_version.py └── validate_formatting.py └── src └── lib.rs /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/makefile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/pyproject.toml -------------------------------------------------------------------------------- /ruff_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/ruff_api/__init__.py -------------------------------------------------------------------------------- /ruff_api/__ruff_version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/ruff_api/__ruff_version__.py -------------------------------------------------------------------------------- /ruff_api/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/ruff_api/__version__.py -------------------------------------------------------------------------------- /ruff_api/_rust.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/ruff_api/_rust.pyi -------------------------------------------------------------------------------- /ruff_api/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/ruff_api/errors.py -------------------------------------------------------------------------------- /ruff_api/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ruff_api/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/ruff_api/tests/__init__.py -------------------------------------------------------------------------------- /ruff_api/tests/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/ruff_api/tests/__main__.py -------------------------------------------------------------------------------- /ruff_api/tests/smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/ruff_api/tests/smoke.py -------------------------------------------------------------------------------- /scripts/ruff_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/scripts/ruff_version.py -------------------------------------------------------------------------------- /scripts/validate_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/scripts/validate_formatting.py -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyreese/ruff-api/HEAD/src/lib.rs --------------------------------------------------------------------------------