- .claude/rules: 팀 정책, git 워크플로우, 코드 스타일, 네이밍, 테스트 규칙 - .claude/skills: push, mr, release, create-mr, fix-issue, init-project, sync-team-workflow - .claude/settings.json: 프로젝트 레벨 권한 설정 - .githooks: commit-msg, pre-commit(모노레포), post-checkout - .editorconfig, .npmrc, .prettierrc, .node-version Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
200 B
Plaintext
12 lines
200 B
Plaintext
{
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"printWidth": 100,
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"bracketSpacing": true,
|
|
"arrowParens": "always",
|
|
"endOfLine": "lf"
|
|
}
|