fixitEasy Examples

Meta's auto-fix linting framework with CST-based rules

Getting started with fixit

Installation and basic usage of fixit.

python
# Install: pip install fixit
import fixit

# Basic fixit usage
print(f"Using fixit")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: fixit)

fixit is a third-party package. Meta's auto-fix linting framework with CST-based rules. Install with: pip install fixit

Common fixit operations

Frequently used features of fixit.

python
# Install: pip install fixit
import fixit

# Common fixit patterns
print(f"fixit version: {fixit.__version__}")

These are the most commonly used features of fixit in everyday development.

Want to try these examples interactively?

Open Easy Playground