Compile regex for Credo.
Clone Compile repository to an arbitrary location:
$ git clone https://github.com/vinikira/compile-credo ~/.emacs.d/site-elisp/compile-credo
Add Flymake Credo directory to load-path in your Emacs initialization file (init.el) and load it.
;; add to load-path
(add-to-list 'load-path "/replace/me/to/compile-credo/full/path")
;; load compile-credo feature
(require 'compile-credo nil t)
Add the following to your config file in order to install using straight:
(straight-use-package
'(compile-credo :type git :host github :repo "vinikira/compile-credo" :branch "main"))
(require 'compile-credo nil t)