Skip to content

Instantly share code, notes, and snippets.

View AlexChesters's full-sized avatar

Alex Chesters AlexChesters

View GitHub Profile
@AlexChesters
AlexChesters / flycheck-ruff.el
Last active November 27, 2024 15:12 — forked from abo-abo/flycheck-ruff.el
Emacs ruff flycheck config
(require 'flycheck)
;; From https://github.com/flycheck/flycheck/issues/1974#issuecomment-1343495202
(flycheck-define-checker python-ruff
"A Python syntax and style checker using the ruff utility.
To override the path to the ruff executable, set
`flycheck-python-ruff-executable'.
See URL `http://pypi.python.org/pypi/ruff'."
:command ("ruff"
"check"
@AlexChesters
AlexChesters / jq-cheetsheet.md
Created July 2, 2024 12:10 — forked from olih/jq-cheetsheet.md
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq