Skip to content
View leothorp's full-sized avatar

Block or report leothorp

Report abuse

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

Report abuse

Pinned Loading

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

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

    JavaScript 17 5

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

    Project starter for a full-stack Typescript monorepo.

    TypeScript 6

  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..."