antislop 0.3.0

A blazing-fast, multi-language linter for detecting AI-generated code slop
Documentation
# Antislop Self-Configuration
# This configures how antislop scans itself.

# Default profile for development
default_profile = "antislop-standard"

# Files to exclude from scanning
# Prevents recursion and scanning of intentional "slop" in tests/examples
exclude = [
    ".git/**",
    "target/**",
    "node_modules/**",
    "vendor/**",
    
    # Exclude examples and tests as they contain intentional findings
    "examples/**",
    "tests/**",
    "benches/**",
    
    # Exclude source files with intentional pattern documentation/definitions
    # These contain examples of slop patterns in documentation comments
    "src/lib.rs",          # Doc examples of slop categories
    "src/config.rs",       # PatternCategory doc comments with examples
    "src/bin/antislop.rs", # CLI help text references
    "src/detector/**",     # Pattern definitions and test patterns
    "src/profile/**",      # TODO comments for future implementation
    
    # Exclude pattern definitions (regexes look like slop)
    "config/patterns/**",
    ".antislop/profiles/**",
    
    # Exclude generated files
    "*.lock",
    "Cargo.lock",
]

# Configure scanner behavior
max_file_size_kb = 1024