⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
This file contains 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
{ | |
"env": { | |
"browser": true, | |
"node": true, | |
"es6": true | |
}, | |
"plugins": ["react"], | |
"ecmaFeatures": { |
This file contains 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
Show hidden characters
{ | |
// JSHint Default Configuration File (as on JSHint website) | |
// See http://jshint.com/docs/ for more details | |
"maxerr" : 7, // {int} Maximum error before stopping | |
// Enforcing | |
"indent": 2, | |
"regexdash": false, | |
"trailing": false, |
This file contains 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
# Ignore Byebug command history file. | |
.byebug_history | |
# Ignore bundler config. # | |
########################## | |
/.bundle | |
vendor/* | |
# Ignore all logfiles and tempfiles. # | |
###################################### |
##Create Aliases in .bash_profile to Assign Shortcuts for Common Terminal Commands
###Instruction: Enter these aliases into your ~/.bash_profile or ~/.zshrc (if using zsh)
- Let’s say you often browse to a directory that requires a lot of typing, such as:
alias cdp="cd ~/Dropbox/projects/source/"
OR
#Xcode Command Line Tools
Xcode > Preferences > Downloads > Command Line Tools
####Homebrew
# install package manager
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"