{"id":26992378,"url":"https://github.com/mgmarlow/flymake-clippy","last_synced_at":"2026-05-05T07:32:00.829Z","repository":{"id":187102183,"uuid":"676313973","full_name":"mgmarlow/flymake-clippy","owner":"mgmarlow","description":"  Flymake backend for Clippy","archived":false,"fork":false,"pushed_at":"2023-11-02T23:46:19.000Z","size":30,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T22:33:47.407Z","etag":null,"topics":["emacs","flymake","rust"],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mgmarlow.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.org","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-08T23:31:11.000Z","updated_at":"2025-03-03T14:44:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"7cefc5de-6e6b-4cc0-a3dc-f62fcc20d5b4","html_url":"https://github.com/mgmarlow/flymake-clippy","commit_stats":null,"previous_names":["mgmarlow/flymake-clippy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mgmarlow/flymake-clippy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgmarlow%2Fflymake-clippy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgmarlow%2Fflymake-clippy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgmarlow%2Fflymake-clippy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgmarlow%2Fflymake-clippy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mgmarlow","download_url":"https://codeload.github.com/mgmarlow/flymake-clippy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgmarlow%2Fflymake-clippy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32640533,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"online","status_checked_at":"2026-05-05T02:00:06.033Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["emacs","flymake","rust"],"created_at":"2025-04-03T22:27:25.095Z","updated_at":"2026-05-05T07:32:00.812Z","avatar_url":"https://github.com/mgmarlow.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flymake-clippy\n\n[![MELPA](https://melpa.org/packages/flymake-clippy-badge.svg)](https://melpa.org/#/flymake-clippy)\n\nA Flymake backend for [Clippy](https://doc.rust-lang.org/stable/clippy/index.html), the Rust linter.\n\n## Instructions\n\nYou probably want to install [rust-mode](https://github.com/rust-lang/rust-mode) first.\n\nInstall from [MELPA](https://melpa.org/#/getting-started):\n\n``` elisp\n(use-package flymake-clippy\n  :hook (rust-mode . flymake-clippy-setup-backend))\n```\n\nAlternatively, clone the repo and update your load path:\n\n```\ngit clone https://git.sr.ht/~mgmarlow/flymake-clippy /path/to/flymake-clippy\n```\n\n```elisp\n(add-to-list 'load-path \"/path/to/flymake-clippy\")\n(require 'flymake-clippy)\n```\n\n### Eglot users\n\nEglot users require [a little extra setup](https://github.com/joaotavora/eglot/issues/268) to enable running multiple Flymake backends simultaneously. Add the following to your Emacs config:\n\n```elisp\n;; Instruct Eglot to stop managing Flymake\n(add-to-list 'eglot-stay-out-of 'flymake)\n\n;; Manually re-enable Eglot's Flymake backend\n(defun manually-activate-flymake ()\n  (add-hook 'flymake-diagnostic-functions #'eglot-flymake-backend nil t)\n  (flymake-mode 1))\n\n(add-hook 'eglot-managed-mode-hook #'manually-activate-flymake nil t)\n```\n\n(Nb. prior to eglot 1.6, this hook was called `eglot--managed-mode-hook)\n\nYou can confirm that Flymake is running correctly by opening up a Rust buffer and examining `flymake-running-backends':\n\n```\nM-x flymake-running-backends\n\nRunning backends: flymake-clippy-backend, eglot-flymake-backend\n```\n\n### Complete eglot + rust-mode + use-package example\n\nWith Eglot 1.6+:\n\n```elisp\n(use-package rust-mode\n  :ensure t)\n\n(use-package flymake-clippy\n  :hook (rust-mode . flymake-clippy-setup-backend))\n\n(defun manually-activate-flymake ()\n  (add-hook 'flymake-diagnostic-functions #'eglot-flymake-backend nil t)\n  (flymake-mode 1))\n\n(use-package eglot\n  :ensure t\n  :hook ((rust-mode . eglot-ensure)\n         (eglot-managed-mode . manually-activate-flymake))\n  :config\n  (add-to-list 'eglot-stay-out-of 'flymake))\n```\n\n## Contributing\n\nPlease direct bug reports or patches to the [the mailing list](https://lists.sr.ht/~mgmarlow/public-inbox).\n\n## License\n\nLicensed under [GPL-3.0](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgmarlow%2Fflymake-clippy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmgmarlow%2Fflymake-clippy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgmarlow%2Fflymake-clippy/lists"}