Skip to main content

Documentation Index

Fetch the complete documentation index at: https://www.sunny-dev.info/llms.txt

Use this file to discover all available pages before exploring further.

Revolte’s Code Quality module integrates with your repository to analyze every commit for potential bugs, security vulnerabilities, and style inconsistencies.

Configuration

You can enable specific code quality frameworks directly in your revolte.yaml.
revolte.yaml
pipeline:
  codeQuality:
    enabled: true
    framework: "ESLint"
    level: "Strict"
    securityAudit: true

Supported Features

  • Static Analysis: Identifies logic errors and potential runtime issues without executing the code.
  • Security Scans: Detects hardcoded secrets, insecure dependencies, and common OWASP vulnerabilities.
  • Style Enforcement: Ensures that all code follows your team’s defined formatting rules (e.g., Prettier, Black).