This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Frontend Design Guideline | |
| This document summarizes key frontend design principles and rules, showcasing | |
| recommended patterns. Follow these guidelines when writing frontend code. | |
| # Readability | |
| Improving the clarity and ease of understanding code. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "key": "cmd+enter", | |
| "command": "runCommands", | |
| "args": { | |
| "commands": [ | |
| { | |
| "command": "git.stageAll" | |
| }, | |
| { | |
| "command": "cursor.generateGitCommitMessage" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as Updates from 'expo-updates'; | |
| import * as SplashScreen from 'expo-splash-screen'; | |
| import { useEffect, useState } from 'react'; | |
| import { View, Text, StyleSheet } from 'react-native'; | |
| // 스플래시 화면 유지 | |
| SplashScreen.preventAutoHideAsync(); | |
| export default function App() { | |
| const [appIsReady, setAppIsReady] = useState(false); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "hooks": { | |
| "Notification": [ | |
| { | |
| "matcher": "", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "terminal-notifier -title 'Claude Code' -message 'Waiting for your input' -sound Glass" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "hooks": { | |
| "PostToolUse": [ | |
| { | |
| "matcher": "Write|Edit|MultiEdit", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "yarn format" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "hooks": { | |
| "Notification": [ | |
| { | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "afplay /System/Library/Sounds/Glass.aiff" | |
| } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import sys | |
| import subprocess | |
| import re | |
| try: | |
| input_data = json.loads(sys.stdin.read()) | |
| except json.JSONDecodeError as e: | |
| print(f"Error: {e}") | |
| sys.exit(1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "key": "cmd+q", | |
| "command": "runCommands", | |
| "args": { | |
| "commands": [ | |
| "workbench.action.terminal.kill", | |
| "workbench.action.terminal.new", | |
| { | |
| "command": "workbench.action.terminal.sendSequence", | |
| "args": { |
OlderNewer