Skip to content

Instantly share code, notes, and snippets.

View jessevdp's full-sized avatar

Jesse van der Pluijm jessevdp

View GitHub Profile
@jessevdp
jessevdp / keybase.md
Last active June 20, 2017 18:09
keybase.md

Keybase proof

I hereby claim:

  • I am jessevdp on github.
  • I am jessevdp (https://keybase.io/jessevdp) on keybase.
  • I have a public key ASAlmzOCssp8zWUxmxvTfg-URd-MKyjPgm9h7UX_oJb7lgo

To claim this, I am signing this object:

@jessevdp
jessevdp / README.md
Last active February 15, 2020 20:13
VSCode settings for typescript ESLint

VScode settings for a project using typescript & ESLint. Requires VSCode ESLint plugin.

  • Configures the ESLint plugin to validate typescript files.
  • Make sure the code editor autofixes on save (using the ESLint plugin too)
  • Make sure vscode uses eslint as the default (and only?) formatter for typescript files
mkdir project-folder
cd project-folder
git clone --bare repo.git .bare
echo "gitdir: ./.bare" > .git
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
git worktree add main main
git worktree add ticket-num "feature/ticket-num"