- /init-project로 팀 표준 워크플로우 적용 (CLAUDE.md, settings.json hooks, pre-commit) - Prettier + eslint-config-prettier 설치 및 ESLint 연동 - format/format:check npm 스크립트 추가 - vite-env.d.ts 추가 (import.meta.env 타입 정의) - pre-commit 차단 해제: GearDetection/BaseChart 타입 캐스팅 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
180 B
Plaintext
11 lines
180 B
Plaintext
{
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"trailingComma": "all",
|
|
"printWidth": 100,
|
|
"bracketSpacing": true,
|
|
"arrowParens": "always",
|
|
"endOfLine": "lf"
|
|
}
|