Skip to content

Instantly share code, notes, and snippets.

View asottile-sentry's full-sized avatar

anthony sottile asottile-sentry

View GitHub Profile
@asottile-sentry
asottile-sentry / mypy.ini
Created June 16, 2022 19:00
mypy plugin weirdness
[mypy]
plugins = mypy_plugin.py
[mypy-django.*]
ignore_missing_imports = True
// ==UserScript==
// @name fails-first
// @namespace https://asottile.dev
// @version 0.1
// @description put failed statuses first
// @author asottile
// @match https://github.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant none
// ==/UserScript==
@asottile-sentry
asottile-sentry / git_io_fix.py
Last active April 29, 2022 15:06
all-repos autofixer for git.io
from __future__ import annotations
import argparse
import functools
import re
import urllib.request
from typing import Match
from typing import Sequence
from all_repos import autofix_lib
// ==UserScript==
// @name fsso
// @namespace https://asottile.dev
// @version 0.1
// @description click a da button
// @author asottile
// @match https://github.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant none
// ==/UserScript==