Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
linting
// ESLint and Prettier configuration, rule selection rationale, and auto-fix conventions.
$ git log --oneline --stat
stars:0
forks:0
updated:2026년 3월 19일 07:08
SKILL.md
// ESLint and Prettier configuration, rule selection rationale, and auto-fix conventions.
[HINT] SKILL.md 및 모든 관련 파일을 포함한 전체 스킬 디렉토리를 다운로드합니다
| name | linting |
| description | ESLint and Prettier configuration, rule selection rationale, and auto-fix conventions. |
Use this skill when configuring lint rules, fixing lint issues, or reviewing lint configuration changes.
eslint-config-prettier to disable ESLint rules that conflict with Prettier.no-console: warn (allow in development, catch in review).no-unused-vars: error (with _ prefix exemption for intentionally unused).@typescript-eslint/no-explicit-any: error.@typescript-eslint/strict-boolean-expressions: warn.import/order: auto-fix to enforce import grouping.no-restricted-imports: prevent circular dependency patterns.npm run lint -- --fix for auto-fixable issues.// eslint-disable-next-line @typescript-eslint/no-non-null-assertion -- validated above
const value = map.get(key)!;
warn for new rules; escalate to error after the codebase is clean.