.agents/skills/lint/SKILL.md
Use this skill to check or fix code style in MiaoYan.
# Check (report only)
swiftlint lint
# Strict mode (treat warnings as errors)
swiftlint lint --strict
# Auto-fix safe violations
swiftlint --fix
# Check specific file
swiftlint lint --path Controllers/ViewController.swift
Config: .swiftlint.yml at project root.
# Check formatting (no changes)
swift-format lint --recursive .
# Apply formatting
swift-format format --recursive --in-place .
Config: .swift-format at project root (line length: 240).
swiftlint lint --strict && swift-format lint --recursive .
--fix or --in-place without user confirmation