Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Eslint_d.js | 867 | 204 | 193 | 6 months ago | 62 | May 26, 2022 | 11 | mit | JavaScript | |
Makes eslint the fastest linter on the planet | ||||||||||
Nim Mode | 116 | 2 years ago | 25 | Emacs Lisp | ||||||
An emacs major mode for the Nim programming language | ||||||||||
Flycheck Clj Kondo | 79 | a year ago | 3 | Emacs Lisp | ||||||
Emacs integration for clj-kondo via flycheck | ||||||||||
Elisp Lint | 65 | a year ago | 4 | Emacs Lisp | ||||||
Basic linting for Emacs Lisp | ||||||||||
Elisp Check | 58 | a month ago | gpl-3.0 | Emacs Lisp | ||||||
A GitHub Action for Emacs Lisp CI | ||||||||||
Elinter | 19 | a year ago | 9 | gpl-3.0 | Emacs Lisp | |||||
Nix-based CI and local testing framework for Emacs Lisp projects | ||||||||||
Iterm2 Dwim | 13 | 3 years ago | 4 | Python | ||||||
iTerm2 click handler | ||||||||||
Flycheck Julia | 12 | 6 years ago | 2 | gpl-3.0 | Emacs Lisp | |||||
A Julia linter for Emacs | ||||||||||
Flymake Racket | 7 | 2 years ago | gpl-3.0 | Emacs Lisp | ||||||
Flymake extension for Racket | ||||||||||
Flycheck Yamllint | 6 | 4 years ago | mit | Emacs Lisp | ||||||
Flycheck YAMLLint integration [not maintained] |
Lint Swift documentation using DrString.
This library provides a flycheck checker for Swift source code using DrString.
A MELPA package is not available yet.
Ensure flycheck
is installed, then download this code and add the
directory to your Emacs load-path
.
Then, in your init.el
:
(eval-after-load 'flycheck
'(add-hook 'flycheck-mode-hook #'flycheck-drstring-setup))
Or, if you use use-package:
(use-package flycheck-drstring
:after flycheck
:hook
(flycheck-mode . flycheck-drstring-setup))
Make sure that the drstring
binary is present on Emacs' exec-path
.
When flycheck
is enabled (e.g. with global-flycheck-mode
),
swift-mode
buffers will be automatically checked using this checker.
This checker includes an error explainer. Invoking flycheck-explain-error-at-point
will show a Help buffer with information about any particular lint warning.