Skip to content
View leothorp's full-sized avatar
Block or Report

Block or report leothorp

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. notion-favicon-fixer notion-favicon-fixer Public

    Chrome extension that prevents Notion's favicon from changing to match the current page.

    JavaScript 13 2

  2. fullstack-typescript-starter fullstack-typescript-starter Public template

    Project starter for a full-stack Typescript monorepo.

    TypeScript 3

  3. loggle loggle Public

    Configurable logging library for the browser environment.

    JavaScript 1

  4. hide-cra-error-overlay hide-cra-error-overlay Public

    Hide the Create React App error overlay behind a "Show Errors" button.

    JavaScript 1

  5. Husky post-merge hook: auto-update p... Husky post-merge hook: auto-update pnpm packages
    1
    #!/usr/bin/env sh
    2
    . "$(dirname "$0")/_/husky.sh"
    3
    
                  
    4
    
                  
    5
    # navigate to parent of husky dir- we assume pnpm-lock is located there.
  6. JS pre-commit hook (Prettier, lintin... JS pre-commit hook (Prettier, linting). Noticeably faster than lint-staged.
    1
    #!/usr/bin/env sh
    2
    . "$(dirname "$0")/_/husky.sh"
    3
    set -e
    4
    bin_dir="node_modules/.bin"
    5
    echo "running pre-commit script..."