linting
Linting workflow for api and webapp (Oxlint)
Install / Use
npx skills add VictorGoic0/Math-Tutoring-AppInstalls into whichever agent you are using.
Cursor Rules
Cursor IDE rules (v2)
Quality Score
Category
AutomationSupported Platforms
Tags
Skill content
View source on GitHubdescription: Linting workflow for api and webapp (Oxlint) globs: api//*.js, webapp//*.{js,jsx} alwaysApply: false
Linting Workflow
This repo uses Oxlint (oxlint + oxlint-plugin-eslint) in api/ and webapp/.
After any substantive edit under api/ or webapp/:
- Run
npm run lintin the package you changed (cd apiorcd webapp). - Optionally run
npm run lint:fixfor safe auto-fixes. - Use editor diagnostics /
ReadLintson edited files for anything Oxlint does not auto-fix. - Never leave a task marked complete with outstanding lint errors (warnings are acceptable unless the runbook phase requires zero warnings).
No Conditional Spread
Never use ...(condition && { key: value }) to build objects conditionally. Prefer explicit branches or building an object in steps.
// ❌ BAD
const payload = { ...(flag && { extra: 1 }) };
// ✅ GOOD
const payload = {};
if (flag) payload.extra = 1;
Related Skills
Agent-Reach
84.2kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.4kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
ruflo
73.0k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
nanobot
48.5kUltra-lightweight, open-source, self-hosted personal AI agent framework in Python with WebUI, tools, memory, MCP, multi-agent workflows, automation, and chat apps
Security Score
Audited on Invalid Date
