Go to file
Bozhidar Batsov bec59eeb58 Add a note about flycheck-mode-success-indicator 2024-04-11 09:26:43 +03:00
.github Mention OpenCollective 2024-02-13 10:44:18 +02:00
doc Add a note about flycheck-mode-success-indicator 2024-04-11 09:26:43 +03:00
maint Fix typos 2020-05-13 14:40:56 +02:00
test Add a new checker 'r' for R 2024-04-11 07:49:30 +03:00
.flake8 Fix flake8 warnings 2018-10-29 10:17:41 +01:00
.gitignore Replace pkg-info with package-get-version (#2037) 2024-02-13 11:14:52 +02:00
.mailmap Update mailmap to fix names in git log 2016-08-18 08:21:17 +02:00
.readthedocs.yaml Add the required RTD configuration file 2024-02-05 08:40:30 +02:00
CHANGES.old Split old changelog into separate file 2016-04-05 16:16:21 +02:00
CHANGES.rst Add a note about flycheck-mode-success-indicator 2024-04-11 09:26:43 +03:00
COPYING Re-license as GPL 3 2012-12-30 10:46:07 +01:00
Eask Update a few urls (http -> https) 2024-02-18 22:46:12 +02:00
MAINTAINERS Add myself to the list of the maintainers 2024-02-04 18:57:48 +02:00
Makefile ci: Fix arguments that contain whitespaces 2023-02-25 23:20:19 -08:00
README.md Mention NonGNU ELPA availability 2024-02-24 08:36:37 +01:00
flycheck-buttercup.el Update flycheck-buttercup matchers to latest buttercup API 2017-09-06 21:36:43 +02:00
flycheck-ert.el Replace usages of -first, -any? and -all? 2024-02-05 13:34:10 +02:00
flycheck.el Add a new checker 'r' for R 2024-04-11 07:49:30 +03:00
flycheck.svg [Fix #331] Add logo for Flycheck 2014-06-06 14:37:22 +02:00

README.md

Flycheck

License GPL 3 Join the chat MELPA MELPA stable version NonGNU ELPA CI Docs Lint Python

https://www.flycheck.org

Modern on-the-fly syntax checking extension for GNU Emacs. Try it!

Getting Started

Flycheck is available for installation with package.el on NonGNU ELPA, MELPA Stable and MELPA.

You can install Flycheck with the following command:

M-x package-install [RET] flycheck [RET]

Finally add this to your Emacs config:

(global-flycheck-mode +1)

Alternatively, if you're into use-package you can do the following:

(use-package flycheck
  :ensure t
  :config
  (add-hook 'after-init-hook #'global-flycheck-mode))

Now you can start using any of the bundled checkers or install additional checkers.

For a more gentle introduction read the Installation instructions and go through Quickstart guide.

Getting Help

Please ask questions about Flycheck on Stack Exchange or in our Gitter chat, and report bugs to our issue tracker.

Contributing

We welcome all kinds of contributions, whether you write patches, open pull requests, write documentation, help others with Flycheck issues, or just tell other people about your experiences with Flycheck. Please take a look at our Contributors Guide for help and guidance about contributing to Flycheck.

Sponsoring

You can support financially the development of Flycheck and related packages via:

Open Collective Backers

Open Collective Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]

Code of Conduct

We strive to create a safe, friendly and welcoming environment in the Flycheck community and have a Code of Conduct that defines acceptable and welcome behaviour as well as sanctions for violations. All contributors and all participants are expected to follow it, on Github, Gitter, Emacs.SX or any other place thats part of Flychecks broader community.

License

Flycheck is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Flycheck is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.