{"id":20821892,"url":"https://github.com/flycheck/flycheck-google-cpplint","last_synced_at":"2025-12-24T15:04:34.852Z","repository":{"id":14569919,"uuid":"17285965","full_name":"flycheck/flycheck-google-cpplint","owner":"flycheck","description":"Google C++ Style checker for Flycheck","archived":false,"fork":false,"pushed_at":"2025-02-24T09:52:34.000Z","size":56,"stargazers_count":42,"open_issues_count":4,"forks_count":11,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-02-24T10:38:26.832Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/flycheck.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"COPYING","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},"funding":{"github":["flycheck","jcs090218"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2014-02-28T12:49:55.000Z","updated_at":"2025-02-24T09:52:38.000Z","dependencies_parsed_at":"2023-12-11T11:31:20.034Z","dependency_job_id":"9f578d12-2d43-4c2b-ae6e-656af75c9132","html_url":"https://github.com/flycheck/flycheck-google-cpplint","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flycheck%2Fflycheck-google-cpplint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flycheck%2Fflycheck-google-cpplint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flycheck%2Fflycheck-google-cpplint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flycheck%2Fflycheck-google-cpplint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flycheck","download_url":"https://codeload.github.com/flycheck/flycheck-google-cpplint/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243168461,"owners_count":20247344,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-17T22:13:21.922Z","updated_at":"2025-12-24T15:04:34.720Z","avatar_url":"https://github.com/flycheck.png","language":"Emacs Lisp","funding_links":["https://github.com/sponsors/flycheck","https://github.com/sponsors/jcs090218"],"categories":[],"sub_categories":[],"readme":"[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-green.svg)](https://www.gnu.org/licenses/gpl-3.0)\n[![MELPA](https://melpa.org/packages/flycheck-google-cpplint-badge.svg)](https://melpa.org/#/flycheck-google-cpplint)\n[![MELPA Stable](https://stable.melpa.org/packages/flycheck-google-cpplint-badge.svg)](https://stable.melpa.org/#/flycheck-google-cpplint)\n\n# flycheck-google-cpplint.el\n\n[![CI](https://github.com/flycheck/flycheck-google-cpplint/actions/workflows/test.yml/badge.svg)](https://github.com/flycheck/flycheck-google-cpplint/actions/workflows/test.yml)\n\nAdd Google C++ Style checker for [Flycheck](https://github.com/flycheck/flycheck).\n\nIf you're want to write code according to the\n[Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html)\n, this will help a great deal.\n\nI recommend that the package\n[google-c-style](https://melpa.org/#/google-c-style)\nalso installed with.\n\n## 💾 Installation\n\nAs usual, from [MELPA](https://melpa.org/#/).\n\nIn your [Cask](http://cask.github.io) file:\n\n```\n(source gnu)\n(source melpa)\n\n(depends-on \"flycheck-google-cpplint\")\n```\n\nIn your `init.el`:\n\n```el\n(eval-after-load 'flycheck\n  '(progn\n     (require 'flycheck-google-cpplint)\n     ;; Add Google C++ Style checker.\n     ;; In default, syntax checked by Clang and Cppcheck.\n     (flycheck-add-next-checker 'c/c++-cppcheck\n                                '(warning . c/c++-googlelint))))\n```\n\nIf you not use `cppcheck`. You have need to change `flycheck-add-next-checker`.\n\n```el\n(flycheck-add-next-checker 'c/c++-clang\n                           '(warning . c/c++-googlelint))\n```\n\n## 🔧 Usage\n\n### Install `cpplint` through `pip`\n\n```\npip install cpplint\n```\n\n*P.S. Make sure cpplint is in your environment path settings*\n\n### Configure for cpplint.py\n\n```el\n(custom-set-variables\n '(flycheck-googlelint-verbose \"3\")\n '(flycheck-googlelint-filter \"-whitespace,+whitespace/braces\")\n '(flycheck-googlelint-root \"project/src\")\n '(flycheck-googlelint-linelength \"120\"))\n```\n\n## 🛠️ Contribute\n\n### 🔬 Development\n\nTo run the test locally, you will need the following tools:\n\n- [Eask](https://emacs-eask.github.io/)\n- [Make](https://www.gnu.org/software/make/) (optional)\n\nInstall all dependencies and development dependencies:\n\n```sh\neask install-deps --dev\n```\n\nTo test the package's installation:\n\n```sh\neask package\neask install\n```\n\nTo test compilation:\n\n```sh\neask compile\n```\n\n**🪧 The following steps are optional, but we recommend you follow these lint results!**\n\nThe built-in `checkdoc` linter:\n\n```sh\neask lint checkdoc\n```\n\nThe standard `package` linter:\n\n```sh\neask lint package\n```\n\n*📝 P.S. For more information, find the Eask manual at https://emacs-eask.github.io/.*\n\n## ⚜️ License\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see \u003chttps://www.gnu.org/licenses/\u003e.\n\nSee [`COPYING`](./COPYING) for details.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflycheck%2Fflycheck-google-cpplint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflycheck%2Fflycheck-google-cpplint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflycheck%2Fflycheck-google-cpplint/lists"}