{"id":21364891,"url":"https://github.com/swift-emacs/flycheck-swift","last_synced_at":"2025-09-01T05:36:28.438Z","repository":{"id":81634728,"uuid":"67872476","full_name":"swift-emacs/flycheck-swift","owner":"swift-emacs","description":"Flycheck extension for Apple's Swift programming language.","archived":false,"fork":false,"pushed_at":"2017-09-09T11:13:41.000Z","size":20,"stargazers_count":13,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-10T07:27:51.310Z","etag":null,"topics":["emacs","emacs-lisp","flycheck","flycheck-extension","flycheck-swift","swift","swift-programming-language"],"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/swift-emacs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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,"zenodo":null}},"created_at":"2016-09-10T13:25:39.000Z","updated_at":"2023-05-24T08:54:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"5cd3fa59-ec6b-414d-a7d3-986029c27979","html_url":"https://github.com/swift-emacs/flycheck-swift","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/swift-emacs/flycheck-swift","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swift-emacs%2Fflycheck-swift","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swift-emacs%2Fflycheck-swift/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swift-emacs%2Fflycheck-swift/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swift-emacs%2Fflycheck-swift/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/swift-emacs","download_url":"https://codeload.github.com/swift-emacs/flycheck-swift/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swift-emacs%2Fflycheck-swift/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273077227,"owners_count":25041358,"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","status":"online","status_checked_at":"2025-09-01T02:00:09.058Z","response_time":120,"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","emacs-lisp","flycheck","flycheck-extension","flycheck-swift","swift","swift-programming-language"],"created_at":"2024-11-22T07:08:06.693Z","updated_at":"2025-09-01T05:36:28.414Z","avatar_url":"https://github.com/swift-emacs.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![License GPL 3][badge-license]][copying]\n[![MELPA](https://melpa.org/packages/flycheck-swift-badge.svg)](https://melpa.org/#/flycheck-swift)\n[![MELPA](https://stable.melpa.org/packages/flycheck-swift-badge.svg)](https://melpa.org/#/flycheck-swift)\n\n# flycheck-swift\n\nFlycheck extension for Apple's Swift programming language.\n\n## Installation\n\n### Using MELPA\n\nInstall `flycheck-swift` package from MELPA.\n\nAdd the following line to the `~/.emacs.d/init.el` or `~/.emacs`.\n\n```\n(eval-after-load 'flycheck '(flycheck-swift-setup))\n```\n\nIf you compile against iOS SDK, add the following lines:\n\n```\n(setq flycheck-swift-sdk-path \"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk\")\n;; ↑ Select the appropriate SDK version you use\n(setq flycheck-swift-target \"arm64-apple-ios10\")\n```\n\n### Manual installation\n\nInstall [Flycheck](http://www.flycheck.org/en/latest/user/installation.html).\n\n```\ngit clone --depth 1 https://github.com/swift-emacs/flycheck-swift.git\ncd flycheck-swift\nemacs --batch -l package -f package-initialize --eval '(package-install-file \"flycheck-swift.el\")'\n```\n\nAdd the following line to the `~/.emacs.d/init.el` or `~/.emacs`.\n\n```\n(eval-after-load 'flycheck '(flycheck-swift-setup))\n```\n\nIf you compile against iOS SDK, add the following lines:\n\n```\n(setq flycheck-swift-sdk-path \"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk\")\n;; ↑ Select the appropriate SDK version you use\n(setq flycheck-swift-target \"arm64-apple-ios10\")\n```\n\n### Using cask (for developer)\n\nInstall [cask](https://github.com/cask/cask).\n\n```\ngit clone https://github.com/swift-emacs/flycheck-swift.git\ncd flycheck-swift\nmake install\n```\n\nAdd the following line to the `~/.emacs.d/init.el` or `~/.emacs`.\n\n```\n(eval-after-load 'flycheck '(flycheck-swift-setup))\n```\n\nIf you compile against iOS SDK, add the following lines:\n\n```\n(setq flycheck-swift-sdk-path \"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk\")\n;; ↑ Select the appropriate SDK version you use\n(setq flycheck-swift-target \"arm64-apple-ios10\")\n```\n\n## Customization\n\n### flycheck-swift-executable\n\nThe name of the executable, i.e. `swiftc`.\n\n### flycheck-swift-extra-flags\n\nExtra flags prepended to arguments of swiftc.\n\n### flycheck-swift-sdk-path\n\nA name of the targeted SDK or path to the targeted SDK.\n\n### flycheck-swift-linked-sources\n\nA list of source file paths to link against. Each path can be glob, i.e. `*.swift`.\n\n### flycheck-swift-framework-search-paths\n\nA list of framework search paths.\n\n### flycheck-swift-cc-include-search-paths\n\nA list of include file search paths to pass to the Objective-C compiler.\n\n### flycheck-swift-target\n\nTarget used by swift compiler.\n\n### flycheck-swift-import-objc-header\n\nObjective C header file to import.\n\n## License\n\nGPLv3. See [COPYING][] for details. Copyright (C) 2014-2016 taku0, Chris Barrett, Bozhidar Batsov, Arthur Evstifeev.\n\n[badge-license]: https://img.shields.io/badge/license-GPL_3-green.svg\n[COPYING]: ./COPYING\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswift-emacs%2Fflycheck-swift","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fswift-emacs%2Fflycheck-swift","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswift-emacs%2Fflycheck-swift/lists"}