lint
2
总安装量
1
周安装量
#69997
全站排名
安装命令
npx skills add https://github.com/keychat-io/keychat-app --skill lint
Agent 安装分布
mcpjam
1
claude-code
1
replit
1
junie
1
windsurf
1
zencoder
1
Skill 文档
Run code quality checks on the Keychat project.
Arguments
$ARGUMENTS– Optional: “fix” to auto-fix formatting issues
Commands
Run all checks (analyze + format check)
melos run lint:all
Run analyzer only
melos run analyze
Check formatting
dart format --set-exit-if-changed .
Fix formatting
dart format .
Workflow
-
If
$ARGUMENTSis “fix”:- Run
dart format .to fix formatting - Then run
melos run analyzeto check for remaining issues
- Run
-
Otherwise:
- Run
melos run lint:allto check everything - Report any issues found
- Run
Analysis configuration
The project uses very_good_analysis rules defined in analysis_options.yaml.